From 8d6c49aed3cd9c181d4ffe10f564cafb88551dce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Boschman?= Date: Tue, 11 Mar 2025 15:09:57 +0800 Subject: [PATCH] [CELEBORN-1901] updated base docker image tag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CELEBORN-1901 ### What changes were proposed in this pull request? Update base docker image to ubuntu 24.04 (noble) ### Why are the changes needed? Current used ubuntu 20.04 is close to end-of-life ### Does this PR introduce _any_ user-facing change? no ### How was this patch tested? Tested on our celeborn installation Closes #3143 from jesusch/CELEBORN-1901-update-docker-base-image. Authored-by: Björn Boschman Signed-off-by: mingji --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 3ca389661..f3888394c 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -15,7 +15,7 @@ # limitations under the License. # -ARG java_image_tag=8-jdk-focal +ARG java_image_tag=8-jdk-noble FROM eclipse-temurin:${java_image_tag} ARG celeborn_uid=10006