Spaces:
Runtime error
Runtime error
FROM python:3.8 | |
WORKDIR /app | |
COPY requirements.txt ./requirements.txt | |
RUN pip install -r requirements.txt | |
EXPOSE 8501 | |
COPY . /app | |
#ENTRYPOINT ["streamlit", "run"] | |
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"] | |