Skip to content

Commit

Permalink
tools/ci/docker/linux/Dockerfile: fix cmake download
Browse files Browse the repository at this point in the history
remove the leftover `wget` as curl is used
triggers a host not found on my machine

Signed-off-by: Alexander Merkle <[email protected]>
  • Loading branch information
Alexander Merkle authored and jerpelea committed Sep 4, 2024
1 parent 9e5d3da commit c95a1cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ci/docker/linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c95a1cc

Please sign in to comment.