From 9943297746735a23ebf0861b9a78542a6630ba61 Mon Sep 17 00:00:00 2001 From: "Tizian.Breuch" Date: Thu, 9 Oct 2025 12:27:34 +0200 Subject: [PATCH] df --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 553e1e4..8b10a54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:20-alpine AS build WORKDIR /app COPY package*.json ./ -RUN npm ci +RUN npm install COPY . . # Ersetze 'frontend', falls dein Projekt in angular.json anders heißt! RUN npm run build -- --configuration production