From 95cf69587019cc8c94674772655575b158a0a4be Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 24 Apr 2024 22:43:33 +0000 Subject: [PATCH] chore(deps): update eclipse-temurin docker tag to v17.0.11_9-jre-focal --- aws-cloudwatch-project/Dockerfile | 4 ++-- aws-kinesis-project/consumer/Dockerfile | 4 ++-- aws-kinesis-project/producer/Dockerfile | 4 ++-- aws-lambda-project/Dockerfile | 4 ++-- aws-parameterstore-project/Dockerfile | 4 ++-- aws-s3-project/Dockerfile | 4 ++-- aws-secretmanager-project/Dockerfile | 4 ++-- aws-ses-project/Dockerfile | 4 ++-- aws-sns-project/Dockerfile | 4 ++-- aws-sqs-project/Dockerfile | 4 ++-- 10 files changed, 20 insertions(+), 20 deletions(-) diff --git a/aws-cloudwatch-project/Dockerfile b/aws-cloudwatch-project/Dockerfile index 04c0770c..2f5c3338 100644 --- a/aws-cloudwatch-project/Dockerfile +++ b/aws-cloudwatch-project/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.10_7-jre-focal as builder +FROM eclipse-temurin:17.0.11_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/aws-cloudwatch-project-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.10_7-jre-focal +FROM eclipse-temurin:17.0.11_9-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./ diff --git a/aws-kinesis-project/consumer/Dockerfile b/aws-kinesis-project/consumer/Dockerfile index 7639cb00..7ea063f1 100644 --- a/aws-kinesis-project/consumer/Dockerfile +++ b/aws-kinesis-project/consumer/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.10_7-jre-focal as builder +FROM eclipse-temurin:17.0.11_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/aws-kinesis-consumer-project-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.10_7-jre-focal +FROM eclipse-temurin:17.0.11_9-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./ diff --git a/aws-kinesis-project/producer/Dockerfile b/aws-kinesis-project/producer/Dockerfile index 2ea2a44a..ba376ea1 100644 --- a/aws-kinesis-project/producer/Dockerfile +++ b/aws-kinesis-project/producer/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.10_7-jre-focal as builder +FROM eclipse-temurin:17.0.11_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/aws-kinesis-producer-project-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.10_7-jre-focal +FROM eclipse-temurin:17.0.11_9-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./ diff --git a/aws-lambda-project/Dockerfile b/aws-lambda-project/Dockerfile index 14f5f05f..eed8315b 100644 --- a/aws-lambda-project/Dockerfile +++ b/aws-lambda-project/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.10_7-jre-focal as builder +FROM eclipse-temurin:17.0.11_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/aws-lambda-project-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.10_7-jre-focal +FROM eclipse-temurin:17.0.11_9-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./ diff --git a/aws-parameterstore-project/Dockerfile b/aws-parameterstore-project/Dockerfile index cb3ec1fb..831727f9 100644 --- a/aws-parameterstore-project/Dockerfile +++ b/aws-parameterstore-project/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.10_7-jre-focal as builder +FROM eclipse-temurin:17.0.11_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/aws-parameterstore-project-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.10_7-jre-focal +FROM eclipse-temurin:17.0.11_9-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./ diff --git a/aws-s3-project/Dockerfile b/aws-s3-project/Dockerfile index e281d60c..94d52a55 100644 --- a/aws-s3-project/Dockerfile +++ b/aws-s3-project/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.10_7-jre-focal as builder +FROM eclipse-temurin:17.0.11_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/aws-s3-project-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.10_7-jre-focal +FROM eclipse-temurin:17.0.11_9-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./ diff --git a/aws-secretmanager-project/Dockerfile b/aws-secretmanager-project/Dockerfile index faac4cf9..b301037a 100644 --- a/aws-secretmanager-project/Dockerfile +++ b/aws-secretmanager-project/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.10_7-jre-focal as builder +FROM eclipse-temurin:17.0.11_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/aws-secretmanager-project-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.10_7-jre-focal +FROM eclipse-temurin:17.0.11_9-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./ diff --git a/aws-ses-project/Dockerfile b/aws-ses-project/Dockerfile index 69b7c444..cd656f37 100644 --- a/aws-ses-project/Dockerfile +++ b/aws-ses-project/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.10_7-jre-focal as builder +FROM eclipse-temurin:17.0.11_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/aws-ses-project-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.10_7-jre-focal +FROM eclipse-temurin:17.0.11_9-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./ diff --git a/aws-sns-project/Dockerfile b/aws-sns-project/Dockerfile index b47abbda..da6c0678 100644 --- a/aws-sns-project/Dockerfile +++ b/aws-sns-project/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.10_7-jre-focal as builder +FROM eclipse-temurin:17.0.11_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/aws-sns-project-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.10_7-jre-focal +FROM eclipse-temurin:17.0.11_9-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./ diff --git a/aws-sqs-project/Dockerfile b/aws-sqs-project/Dockerfile index ec80ffca..4794721e 100644 --- a/aws-sqs-project/Dockerfile +++ b/aws-sqs-project/Dockerfile @@ -1,11 +1,11 @@ -FROM eclipse-temurin:17.0.10_7-jre-focal as builder +FROM eclipse-temurin:17.0.11_9-jre-focal as builder WORKDIR application ARG JAR_FILE=target/aws-sqs-project-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.10_7-jre-focal +FROM eclipse-temurin:17.0.11_9-jre-focal WORKDIR application COPY --from=builder application/dependencies/ ./ COPY --from=builder application/spring-boot-loader/ ./