From 7730853d74accaaa1775bef8d623547b1334b977 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 03:58:29 +0000 Subject: [PATCH] chore(deps): update eclipse-temurin docker tag to v17.0.9_9-jre-focal --- aws-cloudwatch-project/Dockerfile | 4 ++-- aws-kinesis-project/consumer/Dockerfile | 4 ++-- aws-kinesis-project/producer/Dockerfile | 4 ++-- aws-parameterstore-project/Dockerfile | 4 ++-- aws-s3-project/Dockerfile | 4 ++-- aws-secretmanager-project/Dockerfile | 4 ++-- aws-ses-project/Dockerfile | 4 ++-- aws-sqs-project/Dockerfile | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/aws-cloudwatch-project/Dockerfile b/aws-cloudwatch-project/Dockerfile index fd25d70c..49aa8546 100644 --- a/aws-cloudwatch-project/Dockerfile +++ b/aws-cloudwatch-project/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/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.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/aws-kinesis-project/consumer/Dockerfile b/aws-kinesis-project/consumer/Dockerfile index 0bde1266..b933af7c 100644 --- a/aws-kinesis-project/consumer/Dockerfile +++ b/aws-kinesis-project/consumer/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/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.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/aws-kinesis-project/producer/Dockerfile b/aws-kinesis-project/producer/Dockerfile index bd02c1a9..79fc3ea6 100644 --- a/aws-kinesis-project/producer/Dockerfile +++ b/aws-kinesis-project/producer/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/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.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/aws-parameterstore-project/Dockerfile b/aws-parameterstore-project/Dockerfile index a5bb6438..07b2b340 100644 --- a/aws-parameterstore-project/Dockerfile +++ b/aws-parameterstore-project/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/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.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/aws-s3-project/Dockerfile b/aws-s3-project/Dockerfile index 77e29c00..2aa5eb8b 100644 --- a/aws-s3-project/Dockerfile +++ b/aws-s3-project/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/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.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/aws-secretmanager-project/Dockerfile b/aws-secretmanager-project/Dockerfile index 76269c5d..ee7edb20 100644 --- a/aws-secretmanager-project/Dockerfile +++ b/aws-secretmanager-project/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/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.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/aws-ses-project/Dockerfile b/aws-ses-project/Dockerfile index b7aad20d..045b501c 100644 --- a/aws-ses-project/Dockerfile +++ b/aws-ses-project/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/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.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/aws-sqs-project/Dockerfile b/aws-sqs-project/Dockerfile index 91b1c91c..41faa027 100644 --- a/aws-sqs-project/Dockerfile +++ b/aws-sqs-project/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/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.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/ ./