Update CMake to 3.20.5 and git to 2.32.0, update install-cmake-binary.sh script

Update CMake to 3.20.5 and git to 2.32.0, update install-cmake-binary.sh script

Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
Bensuperpc 2021-06-27 19:59:12 +02:00
parent 795dd4dd1f
commit 969f456ae0
2 changed files with 19 additions and 4 deletions

View File

@ -1,7 +1,7 @@
WORKDIR /usr/src
ARG GIT_VERSION=2.31.1
ARG CMAKE_VERSION=3.17.1
ARG GIT_VERSION=2.32.0
ARG CMAKE_VERSION=3.20.5
# Image build scripts
COPY \

View File

@ -35,11 +35,26 @@ fi
cd /usr/src
CMAKE_ROOT=cmake-${CMAKE_VERSION}-Centos5-${ARCH}
url=https://github.com/dockbuild/CMake/releases/download/v${CMAKE_VERSION}/${CMAKE_ROOT}.tar.gz
#Switch to newer version of CMake
#USER=dockbuild #Original user, change it when changed it when there will be a new update of CMake (3.17.1 on June 27, 2021)
USER=bensuperpc
OS=Centos7
CMAKE_ROOT=cmake-${CMAKE_VERSION}-${OS}-${ARCH}
url=https://github.com/${USER}/CMake/releases/download/v${CMAKE_VERSION}/${CMAKE_ROOT}.tar.gz
url_checksum=https://github.com/${USER}/CMake/releases/download/v${CMAKE_VERSION}/${CMAKE_ROOT}.tar.gz.sha256
echo "Downloading $url"
curl -# -LO $url
echo "Downloading $url_checksum"
curl -# -LO $url_checksum
#Checksum package
sha256sum -c ${CMAKE_ROOT}.tar.gz.sha256
tar -xzvf ${CMAKE_ROOT}.tar.gz
rm -f ${CMAKE_ROOT}.tar.gz