From f75fc23cb11f0d512bbbc81934e14fa54e6036bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C9=A7=CF=83=E2=84=93=CF=83?= Date: Tue, 2 Dec 2025 18:15:54 +0100 Subject: [PATCH] fix: docker compose --- Dockerfile | 1 + docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b4a033d..5f85d19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ WORKDIR /app # Installer les dépendances système RUN apt-get update && apt-get install -y \ gcc \ + curl \ && rm -rf /var/lib/apt/lists/* # Copier les fichiers de dépendances diff --git a/docker-compose.yml b/docker-compose.yml index fbb1a20..1d97f3a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,7 +12,7 @@ services: - SECRET_KEY=${SECRET_KEY:-change-this-secret-key-in-production-min-32-characters-long} restart: unless-stopped healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:8000/api/health"] + test: ["CMD", "curl", "-f", "http://localhost:3000/api/health"] interval: 30s timeout: 10s retries: 3