fix: use npm install instead of npm ci for build reliability

This commit is contained in:
root 2026-05-20 14:05:31 +00:00
parent cfb4110d82
commit 5a5636c738
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
FROM node:20-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm install --prefer-offline
COPY . .
RUN npm run build