Spaces:
Sleeping
Sleeping
| FROM python:3.9-slim | |
| WORKDIR /app | |
| COPY . . | |
| RUN pip install -r requirements_streamlit.txt | |
| EXPOSE 8501 | |
| CMD ["streamlit", "run", "streamlit_app.py", "--server.port=8501"] | |
| FROM python:3.9-slim | |
| WORKDIR /app | |
| COPY . . | |
| RUN pip install -r requirements_streamlit.txt | |
| EXPOSE 8501 | |
| CMD ["streamlit", "run", "streamlit_app.py", "--server.port=8501"] | |