From c95a1cc98bc6d4e23853d8afdb70c4224ea299ac Mon Sep 17 00:00:00 2001 From: Alexander Merkle Date: Wed, 4 Sep 2024 08:25:58 +0200 Subject: [PATCH] tools/ci/docker/linux/Dockerfile: fix cmake download remove the leftover `wget` as curl is used triggers a host not found on my machine Signed-off-by: Alexander Merkle --- tools/ci/docker/linux/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/docker/linux/Dockerfile b/tools/ci/docker/linux/Dockerfile index 61b693851329d..5f63089becc40 100644 --- a/tools/ci/docker/linux/Dockerfile +++ b/tools/ci/docker/linux/Dockerfile @@ -309,7 +309,7 @@ RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -y -q libssl-dev RUN mkdir -p cmake && \ - curl -s -L wget https://cmake.org/files/v3.26/cmake-3.26.0.tar.gz \ + curl -s -L https://cmake.org/files/v3.26/cmake-3.26.0.tar.gz \ | tar -C cmake --strip-components=1 -xz \ && cd cmake && ./bootstrap && make && make install && rm -rf cmake