| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY requirements-hf.txt . | |
| RUN pip install --no-cache-dir -r requirements-hf.txt | |
| COPY dashboard/ ./dashboard/ | |
| COPY src/ ./src/ | |
| COPY results/ ./results/ | |
| COPY data/normalized/ ./data/normalized/ | |
| EXPOSE 7860 | |
| CMD ["uvicorn", "dashboard.app:app", "--host", "0.0.0.0", "--port", "7860"] | |