CoolFace
Apppublic

rafif2/NewsTopicsBubbles

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile6 linesDownload Raw Back to root
1FROM python:3.92WORKDIR /code3COPY ./requirements.txt /code/requirements.txt4RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt5COPY . .6CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]