Spaces:
Sleeping
Sleeping
| FROM python:3.13.5-slim | |
| WORKDIR /app | |
| RUN apt-get update && apt-get install -y \ | |
| build-essential \ | |
| curl \ | |
| git \ | |
| # Ajout de 'bash' si non inclus dans slim, nécessaire pour run.sh | |
| bash \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # Copie des fichiers | |
| COPY requirements.txt ./ | |
| COPY src/ ./src/ | |
| COPY run.sh ./ | |
| RUN pip3 install -r requirements.txt | |
| # Rendre le script exécutable | |
| RUN chmod +x run.sh | |
| # Exposer les deux ports (Hugging Face gère les redirections) | |
| EXPOSE 7860 | |
| EXPOSE 7861 | |
| EXPOSE 8000 | |
| # Vérification de santé sur le port Streamlit principal (7860) | |
| HEALTHCHECK CMD curl --fail http://localhost:7860/_stcore/health | |
| # Point d'entrée : Exécuter le script run.sh | |
| ENTRYPOINT ["/bin/bash", "run.sh"] |