Neue Dockerfile Version

This commit is contained in:
Marc Wieland 2025-07-25 14:49:18 +02:00
parent 522dbb3cfc
commit a52b7705ec

View File

@ -5,7 +5,8 @@ COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
RUN npm run build || (echo "BUILD FEHLGESCHLAGEN" && cat /app/npm-debug.log || true)
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html