fix: exclude cypress from build in Dockerfile

This commit is contained in:
Frank Strieter
2022-03-25 07:26:15 +01:00
parent 5065f2cb80
commit a83d6a691a
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