From 8734122eabd4abd71a50a4ce14512f7c15baa8b9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 01:55:08 +0000 Subject: [PATCH] chore(deps): update eclipse-temurin docker tag to v17.0.9_9-jre-focal --- batch-boot-jpa-sample/Dockerfile | 4 ++-- boot-choas-monkey/Dockerfile | 4 ++-- boot-jobrunr-sample/Dockerfile | 4 ++-- boot-mongodb-elasticsearch/Dockerfile | 4 ++-- boot-rest-docs-sample/Dockerfile | 4 ++-- graphql/boot-graphql-webflux/Dockerfile | 4 ++-- graphql/boot-graphql-webmvc/Dockerfile | 2 +- graphql/spring-boot-graphql-querydsl/Dockerfile | 4 ++-- httpClients/boot-http-proxy/Dockerfile | 4 ++-- httpClients/boot-rest-template/Dockerfile | 4 ++-- httpClients/boot-web-client-mvc/Dockerfile | 4 ++-- httpClients/web-client-webflux/Dockerfile | 4 ++-- jpa/boot-data-customsequence/Dockerfile | 4 ++-- jpa/boot-data-envers/Dockerfile | 4 ++-- jpa/boot-data-keyset-pagination/Dockerfile | 4 ++-- jpa/multitenancy/multidatasource-multitenancy/Dockerfile | 4 ++-- jpa/multitenancy/multitenancy-db/Dockerfile | 4 ++-- jpa/multitenancy/partition/Dockerfile | 4 ++-- jpa/multitenancy/schema/Dockerfile | 4 ++-- r2dbc/boot-jooq-r2dbc-sample/Dockerfile | 4 ++-- r2dbc/boot-r2dbc-sample/Dockerfile | 4 ++-- 21 files changed, 41 insertions(+), 41 deletions(-) diff --git a/batch-boot-jpa-sample/Dockerfile b/batch-boot-jpa-sample/Dockerfile index 2aa61f163..c52a8416c 100644 --- a/batch-boot-jpa-sample/Dockerfile +++ b/batch-boot-jpa-sample/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/batch-boot-jpa-0.0.1-SNAPSHOT.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.8_7-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/boot-choas-monkey/Dockerfile b/boot-choas-monkey/Dockerfile index abc6812b0..4d39ea457 100644 --- a/boot-choas-monkey/Dockerfile +++ b/boot-choas-monkey/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-choas-monkey-0.0.1-SNAPSHOT.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.8_7-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/boot-jobrunr-sample/Dockerfile b/boot-jobrunr-sample/Dockerfile index a09e30839..61645f05a 100644 --- a/boot-jobrunr-sample/Dockerfile +++ b/boot-jobrunr-sample/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-jobrunr-sample-0.0.1-SNAPSHOT.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.8_7-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/boot-mongodb-elasticsearch/Dockerfile b/boot-mongodb-elasticsearch/Dockerfile index 17572fbc6..d9deca06e 100644 --- a/boot-mongodb-elasticsearch/Dockerfile +++ b/boot-mongodb-elasticsearch/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-mongodb-elasticsearch-0.0.1-SNAPSHOT.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.8_7-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/boot-rest-docs-sample/Dockerfile b/boot-rest-docs-sample/Dockerfile index 37daf8102..7696343b9 100644 --- a/boot-rest-docs-sample/Dockerfile +++ b/boot-rest-docs-sample/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-rest-docs-sample-0.0.1-SNAPSHOT.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.8_7-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/graphql/boot-graphql-webflux/Dockerfile b/graphql/boot-graphql-webflux/Dockerfile index 10fcb5721..ada2dbe90 100644 --- a/graphql/boot-graphql-webflux/Dockerfile +++ b/graphql/boot-graphql-webflux/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=build/libs/boot-graphql-webflux-0.0.1-SNAPSHOT.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.8_7-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/graphql/boot-graphql-webmvc/Dockerfile b/graphql/boot-graphql-webmvc/Dockerfile index adc8ca63a..38fa36ab3 100644 --- a/graphql/boot-graphql-webmvc/Dockerfile +++ b/graphql/boot-graphql-webmvc/Dockerfile @@ -1,4 +1,4 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-graphql-webmvc-0.0.1-SNAPSHOT.jar COPY ${JAR_FILE} application.jar diff --git a/graphql/spring-boot-graphql-querydsl/Dockerfile b/graphql/spring-boot-graphql-querydsl/Dockerfile index 48cb4da70..6905b8116 100644 --- a/graphql/spring-boot-graphql-querydsl/Dockerfile +++ b/graphql/spring-boot-graphql-querydsl/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=build/libs/spring-boot-graphql-querydsl-0.0.1-SNAPSHOT.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.8_7-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/httpClients/boot-http-proxy/Dockerfile b/httpClients/boot-http-proxy/Dockerfile index 6f2e5f45a..f6b87dc2d 100644 --- a/httpClients/boot-http-proxy/Dockerfile +++ b/httpClients/boot-http-proxy/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-http-proxy-0.0.1-SNAPSHOT.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.8_7-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/httpClients/boot-rest-template/Dockerfile b/httpClients/boot-rest-template/Dockerfile index a8d6845a8..20765a36c 100644 --- a/httpClients/boot-rest-template/Dockerfile +++ b/httpClients/boot-rest-template/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/rest-template-0.0.1-SNAPSHOT.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.8_7-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/httpClients/boot-web-client-mvc/Dockerfile b/httpClients/boot-web-client-mvc/Dockerfile index 746ddfe9b..563ba3ad4 100644 --- a/httpClients/boot-web-client-mvc/Dockerfile +++ b/httpClients/boot-web-client-mvc/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-web-client-mvc-0.0.1-SNAPSHOT.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.8_7-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/httpClients/web-client-webflux/Dockerfile b/httpClients/web-client-webflux/Dockerfile index 1261eb407..5cc8bd323 100644 --- a/httpClients/web-client-webflux/Dockerfile +++ b/httpClients/web-client-webflux/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/web-client-webflux-0.0.1-SNAPSHOT.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.8_7-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/jpa/boot-data-customsequence/Dockerfile b/jpa/boot-data-customsequence/Dockerfile index e3fa35855..a2ccc5da4 100644 --- a/jpa/boot-data-customsequence/Dockerfile +++ b/jpa/boot-data-customsequence/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-data-customsequence-0.0.1-SNAPSHOT.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.8_7-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/jpa/boot-data-envers/Dockerfile b/jpa/boot-data-envers/Dockerfile index d78e3ec3b..fb038f272 100644 --- a/jpa/boot-data-envers/Dockerfile +++ b/jpa/boot-data-envers/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=build/libs/boot-data-envers-0.0.1-SNAPSHOT.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.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./ diff --git a/jpa/boot-data-keyset-pagination/Dockerfile b/jpa/boot-data-keyset-pagination/Dockerfile index df27fbcd6..ceefec206 100644 --- a/jpa/boot-data-keyset-pagination/Dockerfile +++ b/jpa/boot-data-keyset-pagination/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-data-keyset-pagination-0.0.1-SNAPSHOT.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.8_7-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/jpa/multitenancy/multidatasource-multitenancy/Dockerfile b/jpa/multitenancy/multidatasource-multitenancy/Dockerfile index c82b1e7d2..85ea46113 100644 --- a/jpa/multitenancy/multidatasource-multitenancy/Dockerfile +++ b/jpa/multitenancy/multidatasource-multitenancy/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/multidatasource-multitenancy-0.0.1-SNAPSHOT.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.8_7-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/jpa/multitenancy/multitenancy-db/Dockerfile b/jpa/multitenancy/multitenancy-db/Dockerfile index 37d60a75e..3e4a5a3ad 100644 --- a/jpa/multitenancy/multitenancy-db/Dockerfile +++ b/jpa/multitenancy/multitenancy-db/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/multitenancy-db-0.0.1-SNAPSHOT.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.8_7-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/jpa/multitenancy/partition/Dockerfile b/jpa/multitenancy/partition/Dockerfile index bf18da5ec..13d023e16 100644 --- a/jpa/multitenancy/partition/Dockerfile +++ b/jpa/multitenancy/partition/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/partition-0.0.1-SNAPSHOT.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.8_7-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/jpa/multitenancy/schema/Dockerfile b/jpa/multitenancy/schema/Dockerfile index 2c20d1179..0743061f4 100644 --- a/jpa/multitenancy/schema/Dockerfile +++ b/jpa/multitenancy/schema/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/schema-0.0.1-SNAPSHOT.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.8_7-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/r2dbc/boot-jooq-r2dbc-sample/Dockerfile b/r2dbc/boot-jooq-r2dbc-sample/Dockerfile index 3b7f5d749..79f45ab02 100644 --- a/r2dbc/boot-jooq-r2dbc-sample/Dockerfile +++ b/r2dbc/boot-jooq-r2dbc-sample/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-jooq-r2dbc-sample-0.0.1-SNAPSHOT.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.8_7-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/r2dbc/boot-r2dbc-sample/Dockerfile b/r2dbc/boot-r2dbc-sample/Dockerfile index 43c961d11..af13078c3 100644 --- a/r2dbc/boot-r2dbc-sample/Dockerfile +++ b/r2dbc/boot-r2dbc-sample/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.8_7-jre-focal as builder +FROM eclipse-temurin:17.0.9_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/boot-r2dbc-sample-0.0.1-SNAPSHOT.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.8_7-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/ ./