fix: frontend Dockerfile npm ci → npm install (kein lockfile vorhanden)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Audiolib
2026-05-26 12:00:44 +02:00
parent 14ffee3051
commit dfbb397e46

View File

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