File size: 1,250 Bytes
6b10c3a
93b65d5
321036d
 
 
93b65d5
321036d
93b65d5
 
321036d
 
93b65d5
 
321036d
 
93b65d5
321036d
 
93b65d5
321036d
93b65d5
321036d
 
 
 
4e77e19
93b65d5
 
27c0b83
321036d
 
 
 
 
 
 
 
 
 
27c0b83
 
 
 
 
 
93b65d5
bfc913d
27c0b83
4e77e19
93b65d5
27c0b83
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
FROM python:3.11-slim

# Install system dependencies
RUN apt-get update && \
    apt-get install -y build-essential gfortran

# Create a non-root user
RUN useradd -m -u 1000 user
USER user

# Set environment variables
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH

# Set working directory
WORKDIR $HOME/app

# Copy requirements file and install dependencies
COPY --chown=user . $HOME/app
COPY ./requirements.txt $HOME/app/requirements.txt

RUN pip install --user -r requirements.txt

# Copy application code
COPY . .

# Command to run the application
CMD ["chainlit", "run", "app.py", "--port", "7860"]

# FROM python:3.11
# RUN useradd -m -u 1000 user
# USER user
# ENV HOME=/home/user \
#     PATH=/home/user/.local/bin:$PATH
# WORKDIR $HOME/app
# COPY --chown=user . $HOME/app
# COPY ./requirements.txt ~/app/requirements.txt
# RUN pip install -r requirements.txt
# COPY . .
# CMD ["chainlit", "run", "app.py", "--port", "7860"]
# COPY --chown=user requirements.txt $HOME/app/requirements.txt
# RUN pip install --user -r requirements.txt

# # Copy application code
# COPY --chown=user . $HOME/app

# Expose the port the app runs on
# EXPOSE 7860

# Command to run the application
# CMD ["chainlit", "run", "app.py", "--port", "7860"]