CoolFace
Apppublic

rchrdgwr/chainlit_tutorial

sourceHugging Facemitupdated 2y agoView on Hugging Face
0likes
Dockerfile11 linesDownload Raw Back to root
1FROM python:3.92RUN useradd -m -u 1000 user3USER user4ENV HOME=/home/user \5    PATH=/home/user/.local/bin:$PATH6WORKDIR $HOME/app7COPY --chown=user . $HOME/app8COPY ./requirements.txt ~/app/requirements.txt9RUN pip install -r requirements.txt10COPY . .11CMD ["chainlit", "run", "app.py", "--port", "7860"]