Fix Dockerfile: use npm install instead of npm ci

This commit is contained in:
Vivek 2026-06-08 09:04:42 +00:00
parent 4325116903
commit 7b1e02588d

View file

@ -8,9 +8,9 @@ RUN apk add --no-cache git
WORKDIR /app WORKDIR /app
# Install dependencies strictly from lockfile # Install dependencies (no lockfile needed)
COPY package.json package-lock.json* ./ COPY package.json ./
RUN npm ci RUN npm install
# Copy source files # Copy source files
COPY . . COPY . .