Spaces:
Sleeping
Sleeping
# Utiliser l'image Python officielle | |
FROM python:3.9-slim | |
# Installer pandoc et ses dépendances via apt | |
RUN apt-get update && apt-get install -y pandoc libgl1-mesa-glx | |
# Définir le répertoire de travail | |
WORKDIR /app | |
# Copier le fichier requirements.txt et installer les dépendances Python | |
COPY requirements.txt . | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Copier le code de l'application | |
COPY . . | |
# Exposer le port 7860 (port attendu par Hugging Face Spaces) | |
EXPOSE 7860 | |
# Commande pour démarrer l'application | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |