CoolFace
Apppublic

oumi12/streamlit_

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM continuumio/miniconda32 3RUN apt-get update -y4RUN apt-get install nano unzip curl -y5 6RUN useradd -m -u 1000 user7USER user8 9ENV HOME=/home/user \10    PATH=/home/user/.local/bin:$PATH11 12WORKDIR $HOME/app13 14COPY requirements.txt requirements.txt15RUN pip install -r requirements.txt16 17COPY --chown=user . $HOME/app18 19CMD ["streamlit", "run", "streamlit.py", "--server.port=7860", "--server.address=0.0.0.0"]