This is an automated email from the ASF dual-hosted git repository.

snuyanzin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 4ef170781894c3ef1eb6f96f21d536fadd985597
Author: Sergey Nuyanzin <[email protected]>
AuthorDate: Tue May 26 09:18:54 2026 +0200

    [FLINK-39762][ci] Add wget in case of java 25
    
    This closes #28255.
---
 flink-end-to-end-tests/test-scripts/common_docker.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/flink-end-to-end-tests/test-scripts/common_docker.sh 
b/flink-end-to-end-tests/test-scripts/common_docker.sh
index 6a3da85509a..0415fc43474 100644
--- a/flink-end-to-end-tests/test-scripts/common_docker.sh
+++ b/flink-end-to-end-tests/test-scripts/common_docker.sh
@@ -63,6 +63,9 @@ function build_image() {
     cd flink-docker
     ./add-custom.sh -u ${file_server_address}:9999/flink.tgz -n ${image_name} 
-j ${java_version}
 
+    # eclipse-temurin:25+ images don't include wget; add it to the install step
+    sed -i 's/apt-get -y install gpg/apt-get -y install gpg wget/' 
dev/${image_name}-ubuntu/Dockerfile
+
     echo "Building images"
     run_with_timeout 600 docker build --no-cache --network="host" -t 
${image_name} dev/${image_name}-ubuntu
     local build_image_result=$?

Reply via email to