Skip to content

Commit

Permalink
Install CMake from GitHub but not from cmake.org (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikerRUS authored Aug 6, 2024
1 parent 557fb65 commit 5611c45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion images/manylinux_2_28_x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ RUN yum update -y \
&& rm -rf /var/cache/yum

# Install CMake
RUN curl -sL https://cmake.org/files/v3.30/cmake-3.30.1-linux-x86_64.sh -o cmake.sh \
ARG CMAKE_VER=3.30.1
RUN curl -sL https://github.com/Kitware/CMake/releases/download/v${CMAKE_VER}/cmake-${CMAKE_VER}-linux-x86_64.sh -o cmake.sh \
&& chmod +x cmake.sh \
&& ./cmake.sh --prefix=/usr/local --exclude-subdir \
&& rm -f ./cmake.sh
Expand Down

0 comments on commit 5611c45

Please sign in to comment.