diff --git a/Dockerfile b/Dockerfile index 648ba98..39af26b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app COPY package*.json ./ RUN npm install --legacy-peer-deps # <-- Diese Zeile umgeht den Abhängigkeitskonflikt. COPY . . -RUN npm run build --configuration production +RUN npm run build # ----- Stage 2: Erstellen eines minimalen Images ----- FROM scratch