This commit is contained in:
Mel M. van Veen
2024-12-01 20:16:06 +01:00
parent 2f416eb53e
commit 4cd7873f47
21 changed files with 16151 additions and 4 deletions

View File

@@ -3,15 +3,14 @@ FROM --platform=linux/amd64 node:18.19.0 as build
WORKDIR /app
RUN npm run bump-version
COPY package*.json ./
RUN npm install
RUN npm install -g @angular/cli
# Verhoog de versie
RUN npm run bump-version
COPY . .
RUN ng build --configuration=production