From ddfb38d02fcbeed65a7d1723e08fd23b128e1bd0 Mon Sep 17 00:00:00 2001 From: Mark Waite Date: Fri, 26 Jan 2024 12:28:25 -0700 Subject: [PATCH] Use JDK 21.0.2, not 21.0.1 --- 21/alpine/hotspot/Dockerfile | 2 +- 21/debian/bookworm-slim/hotspot/Dockerfile | 2 +- 21/debian/bookworm-slim/hotspot/preview/Dockerfile | 2 +- 21/debian/bookworm/hotspot/Dockerfile | 2 +- 21/debian/bookworm/hotspot/preview/Dockerfile | 2 +- 21/rhel/ubi9/hotspot/Dockerfile | 2 +- docker-bake.hcl | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/21/alpine/hotspot/Dockerfile b/21/alpine/hotspot/Dockerfile index c137ab12ce..80d24a4c5a 100644 --- a/21/alpine/hotspot/Dockerfile +++ b/21/alpine/hotspot/Dockerfile @@ -1,5 +1,5 @@ ARG ALPINE_TAG=3.19.0 -ARG JAVA_VERSION=21.0.1_12 +ARG JAVA_VERSION=21.0.2_13 FROM eclipse-temurin:"${JAVA_VERSION}"-jdk-alpine AS jre-build # Generate smaller java runtime without unneeded files diff --git a/21/debian/bookworm-slim/hotspot/Dockerfile b/21/debian/bookworm-slim/hotspot/Dockerfile index 36da009208..376630c285 100644 --- a/21/debian/bookworm-slim/hotspot/Dockerfile +++ b/21/debian/bookworm-slim/hotspot/Dockerfile @@ -1,5 +1,5 @@ ARG BOOKWORM_TAG=20240110 -ARG JAVA_VERSION=21.0.1_12 +ARG JAVA_VERSION=21.0.2_13 FROM eclipse-temurin:"${JAVA_VERSION}"-jdk-jammy as jre-build RUN if test "${TARGETPLATFORM}" != 'linux/arm/v7'; then \ diff --git a/21/debian/bookworm-slim/hotspot/preview/Dockerfile b/21/debian/bookworm-slim/hotspot/preview/Dockerfile index 97855941ac..5fd9f7f11d 100644 --- a/21/debian/bookworm-slim/hotspot/preview/Dockerfile +++ b/21/debian/bookworm-slim/hotspot/preview/Dockerfile @@ -1,6 +1,6 @@ ARG BOOKWORM_TAG=20240110 FROM debian:bookworm-"${BOOKWORM_TAG}"-slim as jre-build -ARG JAVA_VERSION=21.0.1_12 +ARG JAVA_VERSION=21.0.2_13 ARG TARGETPLATFORM SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/21/debian/bookworm/hotspot/Dockerfile b/21/debian/bookworm/hotspot/Dockerfile index 171156b295..d2cf56163f 100644 --- a/21/debian/bookworm/hotspot/Dockerfile +++ b/21/debian/bookworm/hotspot/Dockerfile @@ -1,5 +1,5 @@ ARG BOOKWORM_TAG=20240110 -ARG JAVA_VERSION=21.0.1_12 +ARG JAVA_VERSION=21.0.2_13 FROM eclipse-temurin:"${JAVA_VERSION}"-jdk-jammy as jre-build RUN if test "${TARGETPLATFORM}" != 'linux/arm/v7'; then \ diff --git a/21/debian/bookworm/hotspot/preview/Dockerfile b/21/debian/bookworm/hotspot/preview/Dockerfile index 3988655943..2d82b68573 100644 --- a/21/debian/bookworm/hotspot/preview/Dockerfile +++ b/21/debian/bookworm/hotspot/preview/Dockerfile @@ -1,6 +1,6 @@ ARG BOOKWORM_TAG=20240110 FROM debian:bookworm-"${BOOKWORM_TAG}"-slim as jre-build -ARG JAVA_VERSION=21.0.1_12 +ARG JAVA_VERSION=21.0.2_13 ARG TARGETPLATFORM SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/21/rhel/ubi9/hotspot/Dockerfile b/21/rhel/ubi9/hotspot/Dockerfile index c042e142bd..711fde31f0 100644 --- a/21/rhel/ubi9/hotspot/Dockerfile +++ b/21/rhel/ubi9/hotspot/Dockerfile @@ -1,5 +1,5 @@ FROM registry.access.redhat.com/ubi9/ubi:9.3-1361 as jre-build -ARG JAVA_VERSION=21.0.1_12 +ARG JAVA_VERSION=21.0.2_13 ARG TARGETPLATFORM SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/docker-bake.hcl b/docker-bake.hcl index 78a96e7345..ed9bf16d2b 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -104,7 +104,7 @@ variable "JAVA21_PREVIEW_VERSION" { } variable "JAVA21_VERSION" { - default = "21.0.1_12" + default = "21.0.2_13" } variable "BOOKWORM_TAG" {