diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-07-04 05:38:23 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2025-07-04 05:38:23 +0200 |
commit | b9ec6c89c136785d14adf387203498b01f0508f3 (patch) | |
tree | d2a8d02e3fae380acad113bc054c02bbdf188544 /openjdk-runtime/Dockerfile | |
parent | 0e9d42ba5478dc0dd99962c82cc875bc4ae2cce5 (diff) |
Update to UBI 10.
Change-Id: I3f9e505877a9a000d66461509413e137c2eda681
Diffstat (limited to 'openjdk-runtime/Dockerfile')
-rw-r--r-- | openjdk-runtime/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openjdk-runtime/Dockerfile b/openjdk-runtime/Dockerfile index 4672be7..def6305 100644 --- a/openjdk-runtime/Dockerfile +++ b/openjdk-runtime/Dockerfile @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: GPL-3.0-or-later -FROM registry.access.redhat.com/ubi9/ubi-minimal:latest AS ubi-minimal +FROM registry.access.redhat.com/ubi10/ubi-minimal:latest AS ubi-minimal # Add OpenJDK (complete). ADD jdk-dist/latest.tar.gz /jdk @@ -23,7 +23,7 @@ RUN microdnf --assumeyes --nodocs install findutils RUN find /java -exec touch --date=@0 '{}' ';' # Build the final image. -FROM registry.access.redhat.com/ubi9/ubi-micro:latest +FROM registry.access.redhat.com/ubi10/ubi-micro:latest COPY --from=ubi-minimal /lib64/libz.so.1 /lib64/ COPY --from=ubi-minimal /java /java ENV JAVA_HOME=/java |