diff --git a/eventarc/audit-storage/Dockerfile b/eventarc/audit-storage/Dockerfile index c3240a62ef1..d9444486431 100644 --- a/eventarc/audit-storage/Dockerfile +++ b/eventarc/audit-storage/Dockerfile @@ -28,7 +28,7 @@ RUN mvn package -DskipTests # Use Eclipse Temurin for base image. # https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds -FROM eclipse-temurin:17.0.12_7-jre-alpine +FROM eclipse-temurin:17.0.13_11-jre-alpine # Copy the jar to the production image from the builder stage. COPY --from=builder /app/target/audit-storage-*.jar /audit-storage.jar diff --git a/eventarc/pubsub/Dockerfile b/eventarc/pubsub/Dockerfile index d0ae4ed1976..44e0bfc3e2b 100644 --- a/eventarc/pubsub/Dockerfile +++ b/eventarc/pubsub/Dockerfile @@ -26,7 +26,7 @@ RUN mvn package -DskipTests # Use Eclipse Temurin for base image. # https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds -FROM eclipse-temurin:17.0.12_7-jre-alpine +FROM eclipse-temurin:17.0.13_11-jre-alpine # Copy the jar to the production image from the builder stage. COPY --from=builder /app/target/events-pubsub-*.jar /events-pubsub.jar diff --git a/run/helloworld/Dockerfile b/run/helloworld/Dockerfile index f5142eb707b..8e2482bfc10 100644 --- a/run/helloworld/Dockerfile +++ b/run/helloworld/Dockerfile @@ -27,7 +27,7 @@ RUN mvn package -DskipTests # Use Eclipse Temurin for base image. # https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds -FROM eclipse-temurin:17.0.12_7-jre-alpine +FROM eclipse-temurin:17.0.13_11-jre-alpine # Copy the jar to the production image from the builder stage. COPY --from=builder /app/target/helloworld-*.jar /helloworld.jar diff --git a/run/image-processing/Dockerfile b/run/image-processing/Dockerfile index 13637d4f557..cb5d9fa5ab9 100644 --- a/run/image-processing/Dockerfile +++ b/run/image-processing/Dockerfile @@ -17,7 +17,7 @@ # It's important to use JDK 8u191 or above that has container support enabled. # https://hub.docker.com/_/eclipse-temurin/ # https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds -FROM eclipse-temurin:17.0.12_7-jre +FROM eclipse-temurin:17.0.13_11-jre # Install Imagemagick into the container image. # For more on system packages review the system packages tutorial. diff --git a/run/system-package/Dockerfile b/run/system-package/Dockerfile index 80651b681c1..0bfeb8bb342 100644 --- a/run/system-package/Dockerfile +++ b/run/system-package/Dockerfile @@ -15,7 +15,7 @@ # [START cloudrun_system_package_dockerfile] # Use the Official eclipse-temurin image for a lean production stage of our multi-stage build. # https://hub.docker.com/_/eclipse-temurin/ -FROM eclipse-temurin:17.0.12_7-jre +FROM eclipse-temurin:17.0.13_11-jre RUN apt-get update -y && apt-get install -y \ graphviz \