File size: 377 Bytes
e5fa863
 
 
 
 
aa4f012
e5fa863
e11a5e8
e5fa863
e11a5e8
e5fa863
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.9
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH
WORKDIR /home/user/app
COPY --chown=user . $HOME/app
RUN python -m pip install --upgrade pip setuptools
COPY ./requirements.txt ~/app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["chainlit", "run", "app.py", "--port", "7860"]