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

This commit is contained in:
2026-05-01 12:06:23 +00:00
parent 4c8883022b
commit bf3addfd96

View File

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