Spaces:
Build error
Build error
| FROM python:3.13 | |
| WORKDIR /app | |
| # Copier les fichiers nécessaires | |
| COPY requirements.txt . | |
| COPY export.pkl . | |
| COPY recommendation.xlsx . | |
| COPY app.py . | |
| # Installer les dépendances (uniquement ce qui est dans requirements.txt) | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Lancer l'application | |
| CMD ["python", "app.py"] |