From 9baad0fcb1fe4b4d1b36b90ac22803364e51a05c Mon Sep 17 00:00:00 2001 From: Philipp Thun Date: Fri, 24 Jul 2026 14:10:00 +0200 Subject: [PATCH] Bump UAA devcontainer to SapMachine JDK 25 The UAA image clones the latest UAA release, which now requires Java 25 to compile. The pinned SapMachine 21 builder failed with 'invalid source release: 25'. Bump both the builder and runtime stages to SapMachine 25. --- .devcontainer/images/uaa/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/images/uaa/Dockerfile b/.devcontainer/images/uaa/Dockerfile index 551771e67a8..6c87257418b 100644 --- a/.devcontainer/images/uaa/Dockerfile +++ b/.devcontainer/images/uaa/Dockerfile @@ -1,5 +1,5 @@ # Build image -FROM sapmachine:21-jdk-headless-ubuntu-jammy AS builder +FROM sapmachine:25-jdk-headless-ubuntu-jammy AS builder WORKDIR /uaa @@ -22,7 +22,7 @@ RUN yq e '.oauth.clients.admin.authorities += ",password.write"' -i /uaa.yml \ && yq e '.uaa.url = .issuer.uri' -i /uaa.yml # Runtime image - lightweight JRE instead of Tomcat -FROM sapmachine:21-jre-headless-ubuntu-jammy +FROM sapmachine:25-jre-headless-ubuntu-jammy # Copy config file from yq image COPY --from=yq /uaa.yml /uaa.yml