fix: utiliser npm install au lieu de npm ci pour les dépendances Docker

This commit is contained in:
y.campiontrebouta@innotexnas.ovh
2026-02-04 23:56:47 +01:00
parent 1444baa570
commit 47ba0ca477

View File

@@ -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