This repository was archived by the owner on Feb 13, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
backend/business-partner-agent Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 2828 - name : Setup node and install deps
2929 uses : actions/setup-node@v2
3030 with :
31- node-version : ' 16.15.0 '
32- check-latest : false
33- - run : npm --prefix frontend ci --no-optional
31+ node-version : ' 16'
32+ check-latest : true
33+ - run : npm --prefix frontend ci --no-optional --legacy-peer-deps
3434
3535 - name : Setup Java
3636 uses : actions/setup-java@v2
Original file line number Diff line number Diff line change 11# Dockerfile that builds frontend and backend, mainly used by the docker-compose files
22
33# Vue Build Container
4- FROM node:16-alpine3.13 as VUE
4+ FROM node:16-buster-slim as VUE
55WORKDIR /frontend
66COPY frontend .
7- RUN npm install && npm run build
7+ RUN npm ci --no-optional --legacy-peer-deps && npm run build
88
99# Micronaut build
1010FROM maven:3-eclipse-temurin-17 as MAVEN
Original file line number Diff line number Diff line change 417417 </goals >
418418 <configuration >
419419 <!-- See https://nodejs.org/en/download/ -->
420- <nodeVersion >v16.15.0 </nodeVersion >
421- <npmVersion >8.5.5 </npmVersion >
420+ <nodeVersion >v16.15.1 </nodeVersion >
421+ <npmVersion >8.11.0 </npmVersion >
422422 </configuration >
423423 </execution >
424424 <execution >
428428 <goal >npm</goal >
429429 </goals >
430430 <configuration >
431- <arguments >ci --no-optional</arguments >
431+ <arguments >ci --no-optional --legacy-peer-deps </arguments >
432432 </configuration >
433433 </execution >
434434 <execution >
You can’t perform that action at this time.
0 commit comments