Skip to content
This repository was archived by the owner on Feb 13, 2024. It is now read-only.

Commit 3b609da

Browse files
author
Philipp Etschel
committed
see #759
Signed-off-by: Philipp Etschel <philipp.etschel@ch.bosch.com>
1 parent 6a056cc commit 3b609da

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
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

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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
55
WORKDIR /frontend
66
COPY frontend .
7-
RUN npm install && npm run build
7+
RUN npm ci --no-optional --legacy-peer-deps && npm run build
88

99
# Micronaut build
1010
FROM maven:3-eclipse-temurin-17 as MAVEN

backend/business-partner-agent/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -417,8 +417,8 @@
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>
@@ -428,7 +428,7 @@
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>

0 commit comments

Comments
 (0)