From 9db395331a7fb87449d3b36388aa2dda6e814940 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Sun, 14 Sep 2025 11:02:25 +0200 Subject: [PATCH] Actualiser Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ae3f729..73e7e2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.10-slim WORKDIR /app -# Installer les dépendances système nécessaires pour Docker et le projet +# Installer les dépendances système nécessaires RUN apt-get update && apt-get install -y \ curl \ git \ @@ -22,5 +22,5 @@ RUN pip install --no-cache-dir -r requirements.txt # Exposer le port de l'application EXPOSE 3000 -# Démarrer l'application -CMD ["python", "app.py"] \ No newline at end of file +# Commande de démarrage correcte selon la documentation +CMD ["python", "src/main.py"] \ No newline at end of file