From 2d2142b1707f4d42edcca75ee7efe6b54b0185b3 Mon Sep 17 00:00:00 2001 From: Peter Toth Date: Fri, 26 Sep 2025 09:14:35 +0200 Subject: [PATCH] Switch Spark 3.5 Java 11 docker registry images to 11-jammy --- 3.5.7/scala2.12-java11-ubuntu/Dockerfile | 2 +- add-dockerfiles.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/3.5.7/scala2.12-java11-ubuntu/Dockerfile b/3.5.7/scala2.12-java11-ubuntu/Dockerfile index 524f778..9eef8bf 100644 --- a/3.5.7/scala2.12-java11-ubuntu/Dockerfile +++ b/3.5.7/scala2.12-java11-ubuntu/Dockerfile @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # -FROM eclipse-temurin:11-jre-focal +FROM eclipse-temurin:11-jammy ARG spark_uid=185 diff --git a/add-dockerfiles.sh b/add-dockerfiles.sh index c50f4e7..c418c02 100755 --- a/add-dockerfiles.sh +++ b/add-dockerfiles.sh @@ -80,7 +80,7 @@ for TAG in $TAGS; do elif echo $TAG | grep -q "java17"; then OPTS+=" --java-version 17 --image eclipse-temurin:17-jammy" elif echo $TAG | grep -q "java11"; then - OPTS+=" --java-version 11 --image eclipse-temurin:11-jre-focal" + OPTS+=" --java-version 11 --image eclipse-temurin:11-jammy" fi OPTS+=" --spark-version $VERSION"