From 7b1e02588dcd18e2c30428544455142fb4c2fc41 Mon Sep 17 00:00:00 2001 From: Vivek Date: Mon, 8 Jun 2026 09:04:42 +0000 Subject: [PATCH] Fix Dockerfile: use npm install instead of npm ci --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index eb970a6..795b6cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,9 +8,9 @@ RUN apk add --no-cache git WORKDIR /app -# Install dependencies strictly from lockfile -COPY package.json package-lock.json* ./ -RUN npm ci +# Install dependencies (no lockfile needed) +COPY package.json ./ +RUN npm install # Copy source files COPY . .