CoolFace
Apppublic

thinkcol/restaurants

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
Dockerfile10 linesDownload Raw Back to root
1FROM python:3.112RUN useradd -m -u 1000 user3USER user4ENV HOME=/home/user \5    PATH=/home/user/.local/bin:$PATH6WORKDIR $HOME/app7COPY --chown=user . .8RUN pip install -r requirements.txt9CMD ["chainlit", "run", "app.py", "--port", "7860"]10