Spaces:
Sleeping
Sleeping
File size: 376 Bytes
7aa89be 81e0468 7aa89be 81e0468 7aa89be 4e200c7 81e0468 7aa89be 81e0468 4e200c7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM python:3.9
RUN useradd -m -u 1000 user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
USER user
COPY --chown=user requirements.txt $HOME/app/requirements.txt
RUN pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir -r requirements.txt
COPY --chown=user . $HOME/app
CMD ["chainlit", "run", "app.py", "--port", "7860"] |