This commit is contained in:
pradeepkumar
2026-04-07 11:48:38 +05:30
parent 1c3014123f
commit 04425c9607
3 changed files with 63 additions and 3 deletions

View File

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