🔧 FIX: Use npm install instead of npm ci for more reliable builds

This commit is contained in:
cawcenter
2025-12-14 17:29:35 -05:00
parent 486fe3c1be
commit b13c05aabd

View File

@@ -7,7 +7,7 @@ RUN apk add --no-cache libc6-compat
# ========= DEPENDENCIES =========
FROM base AS deps
COPY package*.json ./
RUN npm ci
RUN npm install --legacy-peer-deps
# ========= BUILD =========
FROM base AS builder