File size: 875 Bytes
f63c85e
c2cb28f
 
f63c85e
 
 
c2cb28f
 
f63c85e
 
c2cb28f
 
f63c85e
 
c2cb28f
 
f63c85e
c2cb28f
 
f63c85e
 
 
 
 
 
 
 
 
 
 
 
043ce06
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
#FROM python:3.9

# Create user and set environment variables
#RUN useradd -m -u 1000 user
#ENV HOME=/home/user \
#    PATH=/home/user/.local/bin:$PATH

# Switch to user and setup working directory
#USER user
#WORKDIR $HOME/app

# First, copy just the requirements.txt and install dependencies
#COPY --chown=user ./requirements.txt $HOME/app/requirements.txt
#RUN pip install --user -r requirements.txt

# Now copy the rest of the app
#COPY --chown=user . $HOME/app

# Set the default command to run your application
#CMD ["chainlit", "run", "app.py", "--port", "7860"]

FROM python:3.9
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"]