fix: exclude cypress from build in Dockerfile

This commit is contained in:
Frank Strieter
2022-03-25 07:26:15 +01:00
parent 617c60a681
commit 35a16a7b18
3 changed files with 375 additions and 375 deletions

View File

@@ -3,7 +3,7 @@ FROM node:16 AS compile-frontend
COPY . /src
WORKDIR /src/src-ui
RUN npm update npm -g && npm install
RUN npm update npm -g && npm ci --no-optional
RUN ./node_modules/.bin/ng build --configuration production