fix: use npm install instead of npm ci in Dockerfile

This commit is contained in:
pradeepkumar
2026-01-21 19:20:13 +05:30
parent 25b76e0a2d
commit cb2e17c759

View File

@@ -11,7 +11,7 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
# Install dependencies # Install dependencies
RUN npm ci RUN npm install --legacy-peer-deps
# Stage 2: Build # Stage 2: Build
FROM node:20-alpine AS builder FROM node:20-alpine AS builder