summaryrefslogtreecommitdiff
path: root/openjdk-runtime/build
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-07-04 05:38:23 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-07-04 05:38:23 +0200
commitb9ec6c89c136785d14adf387203498b01f0508f3 (patch)
treed2a8d02e3fae380acad113bc054c02bbdf188544 /openjdk-runtime/build
parent0e9d42ba5478dc0dd99962c82cc875bc4ae2cce5 (diff)
Update to UBI 10.
Change-Id: I3f9e505877a9a000d66461509413e137c2eda681
Diffstat (limited to 'openjdk-runtime/build')
-rwxr-xr-xopenjdk-runtime/build6
1 files changed, 3 insertions, 3 deletions
diff --git a/openjdk-runtime/build b/openjdk-runtime/build
index 5b94efc..2ef7959 100755
--- a/openjdk-runtime/build
+++ b/openjdk-runtime/build
@@ -8,7 +8,7 @@ set -euo pipefail
cd "$(dirname $(readlink -e "$0"))"
image=docker.benkard.de/mulk/openjdk-runtime:latest
-dependencies=(registry.access.redhat.com/ubi9/ubi-micro:latest registry.access.redhat.com/ubi9/ubi-minimal:latest)
+dependencies=(registry.access.redhat.com/ubi10/ubi-micro:latest registry.access.redhat.com/ubi10/ubi-minimal:latest)
platform=linux/amd64
use_kaniko=no
@@ -20,8 +20,8 @@ if [[ "${use_kaniko}" == yes ]]; then
--platform "${platform}" \
gcr.io/kaniko-project/warmer:latest \
--cache-dir=/workspace/cache \
- --image=registry.access.redhat.com/ubi9/ubi-micro:latest \
- --image=registry.access.redhat.com/ubi9/ubi-minimal:latest
+ --image=registry.access.redhat.com/ubi10/ubi-micro:latest \
+ --image=registry.access.redhat.com/ubi10/ubi-minimal:latest
docker run \
--mount type=bind,src="$PWD",target=/workspace \