Skip to content

Commit

Permalink
Update base docker java image from 17.0.2 to 17.0.9_9 (#383)
Browse files Browse the repository at this point in the history
openjdk has been deprecated since July 2022 and so our base
image hasn't been receiving fixes or security patches

By switching to eclipse-temurin we start getting updates again.
  • Loading branch information
adrianclay authored Dec 11, 2023
1 parent b7ffbe0 commit 7b310d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/gp2gp-translator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY --chown=gradle:gradle ./config /home/gradle/service/config
WORKDIR /home/gradle/service/gp2gp-translator
RUN ./gradlew --build-cache bootJar

FROM openjdk:17
FROM eclipse-temurin:17

EXPOSE 8085

Expand Down
2 changes: 1 addition & 1 deletion docker/gpc-facade/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ COPY --chown=gradle:gradle ./config /home/gradle/service/config
WORKDIR /home/gradle/service/gpc-api-facade
RUN ./gradlew --build-cache bootJar

FROM openjdk:17
FROM eclipse-temurin:17

EXPOSE 8081

Expand Down

0 comments on commit 7b310d5

Please sign in to comment.