Spaces:
Sleeping
Sleeping
| FROM python:3.13-slim | |
| ENV PYTHONDONTWRITEBYTECODE=1 \ | |
| PYTHONUNBUFFERED=1 \ | |
| PIP_NO_CACHE_DIR=1 | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --upgrade pip && pip install -r requirements.txt | |
| COPY app ./app | |
| COPY scripts ./scripts | |
| COPY data ./data | |
| COPY models ./models | |
| COPY .env.example ./.env.example | |
| COPY README.md ./README.md | |
| EXPOSE 8501 | |
| CMD ["streamlit", "run", "app/dashboard.py", "--server.address=0.0.0.0", "--server.port=8501", "--server.headless=true"] | |