From d6ec124fdecf46c08f0257f28ca09d2988d27c88 Mon Sep 17 00:00:00 2001 From: HuskyTeufel Date: Thu, 3 Feb 2022 13:38:40 +0100 Subject: [PATCH] Angular builds on production --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dc7b675..f68c130 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ RUN npm install -g npm@8.3.1 RUN npm install -g @angular/cli COPY ui /ui WORKDIR ui -RUN npm install && ng build +RUN npm install && ng build --configuration=production FROM golang:alpine AS GO_BUILD