Spaces:
Runtime error
Runtime error
File size: 388 Bytes
7d8cfd6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM python:3.9-slim-bullseye
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 config --user set global.progress_bar off
RUN pip install -r requirements.txt --progress-bar off
COPY . .
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|