From aa9f07e5f2416a7bf2c812616b1d53e9b35890a8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 04:56:52 +0000 Subject: [PATCH] Update eclipse-temurin Docker tag --- .gitlab-ci.yml | 2 +- application/Dockerfile | 4 ++-- cloudbuild.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bb90423..d53c00b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,7 @@ variables: # `showDateTime` will show the passed time in milliseconds. You need to specify `--batch-mode` to make this work. -image: eclipse-temurin:17.0.6_10-jdk-focal +image: eclipse-temurin:17.0.9_9-jdk-focal cache: key: gradle-cache-key diff --git a/application/Dockerfile b/application/Dockerfile index 1e134b2..c03ad66 100644 --- a/application/Dockerfile +++ b/application/Dockerfile @@ -1,12 +1,12 @@ # the first stage of our build will extract the layers -FROM eclipse-temurin:17.0.6_10-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=build/libs/devzone-0.0.1.jar COPY ${JAR_FILE} application.jar RUN java -Djarmode=layertools -jar application.jar extract # the second stage of our build will copy the extracted layers -FROM eclipse-temurin:17.0.6_10-jre-focal +FROM eclipse-temurin:17.0.9_9-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./ diff --git a/cloudbuild.yaml b/cloudbuild.yaml index 7a580f4..fdbd05f 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -1,5 +1,5 @@ steps: - - name: 'eclipse-temurin:17.0.6_10-jdk-focal' + - name: 'eclipse-temurin:17.0.9_9-jdk-focal' args: - '-c' - |