Spaces:
Running
Running
| FROM python:3.10-slim | |
| WORKDIR /app | |
| RUN apt-get update && apt-get install -y git | |
| COPY . . | |
| RUN pip install --upgrade pip | |
| RUN pip install -r requirements.txt | |
| EXPOSE 7860 | |
| CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.headless=true"] | |