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

Switch back to npm ci once package-lock.json is committed.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-10 13:19:43 +02:00
parent 770bd687be
commit 2aa055868c

View File

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