diff --git a/Dockerfile b/Dockerfile index cf432ef..97a2513 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,6 @@ FROM --platform=linux/amd64 node:18.19.0 as build WORKDIR /app -RUN npm run bump-version - COPY package*.json ./ RUN npm install @@ -13,6 +11,8 @@ RUN npm install -g @angular/cli COPY . . +RUN npm version patch --no-git-tag-version + RUN ng build --configuration=production # Gebruik een multi-architecture versie van Nginx