Spaces:
Sleeping
Sleeping
File size: 386 Bytes
7fb35d1 92cb085 7fb35d1 92cb085 7fb35d1 92cb085 7fb35d1 92cb085 7fb35d1 92cb085 7fb35d1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.9-slim
WORKDIR /app
# Installation des dépendances
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copie du code
COPY . .
# Hugging Face Spaces écoute sur le port 7860
EXPOSE 7860
# Lancement avec Gunicorn (app:server signifie fichier app.py, variable server)
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:server", "--timeout", "120"] |