From 8b98c467d0d76216fc549c493cba4414001bee9b Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Thu, 18 Sep 2025 20:44:47 +0200 Subject: [PATCH] fix: update Dockerfile to use npm install instead of npm ci - Changed the command in the Dockerfile to use `npm install` when a package-lock.json file is present, ensuring compatibility with the current setup. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9d9a292..e65d144 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ WORKDIR /app # Install dependencies based on the preferred package manager COPY package.json package-lock.json* ./ RUN \ - if [ -f package-lock.json ]; then npm ci; \ + if [ -f package-lock.json ]; then npm install; \ else echo "Lockfile not found." && exit 1; \ fi