Angular builds on production

This commit is contained in:
HuskyTeufel
2022-02-03 13:38:40 +01:00
parent 8f8305860f
commit d6ec124fde

View File

@@ -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