CoolFace
Apppublic

taslan/streamlit_docker_based

sourceHugging Faceupdated 4y agoView on Hugging Face
0likes
Dockerfile9 linesDownload Raw Back to root
1FROM python:3.82WORKDIR /app3COPY requirements.txt ./requirements.txt4RUN pip install -r requirements.txt5EXPOSE 85016COPY . /app7#ENTRYPOINT ["streamlit", "run"]8CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]9