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