fix: use npm install instead of npm ci (no package-lock.json)

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Paperclip Agent
2026-06-13 19:34:09 +02:00
parent 20be1d73be
commit 54c9ece5a0

View File

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