Fix: use npm install instead of npm ci (no lockfile)

This commit is contained in:
2026-05-01 12:06:38 +00:00
parent 12ed48f1b4
commit 7fe3a35a8a

View File

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