CoolFace
Apppublic

splitbill/annotation-tool

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile23 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /code4 5COPY requirements.txt ./6 7RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt8 9RUN useradd -m -u 1000 user10 11USER user12 13ENV HOME=/home/user \14	PATH=/home/user/.local/bin:$PATH15 16WORKDIR $HOME/app17 18COPY --chown=user . $HOME/app19 20COPY --chown=user config/config.toml $HOME/app/.streamlit/config.toml21 22CMD ["streamlit", "run", "main.py", "--server.port=7860", "--server.address=0.0.0.0"]23