From 47ba0ca4775cee41d38b02e3eefd1eaa47cf81a3 Mon Sep 17 00:00:00 2001 From: "y.campiontrebouta@innotexnas.ovh" Date: Wed, 4 Feb 2026 23:56:47 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20utiliser=20npm=20install=20au=20lieu=20d?= =?UTF-8?q?e=20npm=20ci=20pour=20les=20d=C3=A9pendances=20Docker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f4f89fb..c16f006 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app COPY backend/package*.json ./ -RUN npm ci --only=production +RUN npm install --production && npm cache clean --force COPY backend/src ./src COPY frontend ./frontend