Skip to content

Commit

Permalink
cicd(Dockerfiles): use eclipse-temurin-17 as base image for build
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoprow committed Jan 27, 2023
1 parent b897a75 commit 2776a5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bpdm-gate/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3.8.5-openjdk-17-slim AS build
FROM maven:3.8.7-eclipse-temurin-17 AS build
COPY . /home/app
WORKDIR /home/app
RUN mvn -B -U clean package -pl bpdm-gate -am -DskipTests
Expand Down
2 changes: 1 addition & 1 deletion bpdm-pool/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3.8.5-openjdk-17-slim AS build
FROM maven:3.8.7-eclipse-temurin-17 AS build
COPY . /home/app
WORKDIR /home/app
RUN mvn -B -U clean package -pl bpdm-pool -am -DskipTests
Expand Down

0 comments on commit 2776a5b

Please sign in to comment.