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
# 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 . .