diff --git a/cmake/docker/centos/Dockerfile b/cmake/docker/centos/Dockerfile index b5fc0d72ea..846ded60d2 100644 --- a/cmake/docker/centos/Dockerfile +++ b/cmake/docker/centos/Dockerfile @@ -9,11 +9,11 @@ RUN dnf -y update \ && dnf -y groupinstall "Development Tools" \ && dnf clean all \ && rm -rf /var/cache/dnf -# Install CMake 3.16.4 -RUN wget "https://cmake.org/files/v3.16/cmake-3.16.4-Linux-x86_64.sh" \ -&& chmod a+x cmake-3.16.4-Linux-x86_64.sh \ -&& ./cmake-3.16.4-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ -&& rm cmake-3.16.4-Linux-x86_64.sh +# Install CMake 3.17.2 +RUN wget "https://cmake.org/files/v3.17/cmake-3.17.2-Linux-x86_64.sh" \ +&& chmod a+x cmake-3.17.2-Linux-x86_64.sh \ +&& ./cmake-3.17.2-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ +&& rm cmake-3.17.2-Linux-x86_64.sh CMD [ "/usr/bin/bash" ] FROM base AS swig diff --git a/cmake/docker/debian/Dockerfile b/cmake/docker/debian/Dockerfile index afc93d6214..70943359b9 100644 --- a/cmake/docker/debian/Dockerfile +++ b/cmake/docker/debian/Dockerfile @@ -9,11 +9,11 @@ RUN apt-get update -qq \ git wget libssl-dev build-essential \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* -# Install CMake 3.16.4 -RUN wget "https://cmake.org/files/v3.16/cmake-3.16.4-Linux-x86_64.sh" \ -&& chmod a+x cmake-3.16.4-Linux-x86_64.sh \ -&& ./cmake-3.16.4-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ -&& rm cmake-3.16.4-Linux-x86_64.sh +# Install CMake 3.17.2 +RUN wget "https://cmake.org/files/v3.17/cmake-3.17.2-Linux-x86_64.sh" \ +&& chmod a+x cmake-3.17.2-Linux-x86_64.sh \ +&& ./cmake-3.17.2-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ +&& rm cmake-3.17.2-Linux-x86_64.sh CMD [ "/bin/bash" ] FROM base AS swig diff --git a/cmake/docker/ubuntu/Dockerfile b/cmake/docker/ubuntu/Dockerfile index 20f2f37d49..88efc83134 100644 --- a/cmake/docker/ubuntu/Dockerfile +++ b/cmake/docker/ubuntu/Dockerfile @@ -8,11 +8,11 @@ RUN apt-get update -qq \ && apt-get install -yq git wget libssl-dev build-essential \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* -# Install CMake 3.16.4 -RUN wget "https://cmake.org/files/v3.16/cmake-3.16.4-Linux-x86_64.sh" \ -&& chmod a+x cmake-3.16.4-Linux-x86_64.sh \ -&& ./cmake-3.16.4-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ -&& rm cmake-3.16.4-Linux-x86_64.sh +# Install CMake 3.17.2 +RUN wget "https://cmake.org/files/v3.17/cmake-3.17.2-Linux-x86_64.sh" \ +&& chmod a+x cmake-3.17.2-Linux-x86_64.sh \ +&& ./cmake-3.17.2-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ +&& rm cmake-3.17.2-Linux-x86_64.sh CMD [ "/usr/bin/bash" ] FROM base AS swig diff --git a/makefiles/docker/centos/Dockerfile b/makefiles/docker/centos/Dockerfile index 652ade2650..aeabeada18 100644 --- a/makefiles/docker/centos/Dockerfile +++ b/makefiles/docker/centos/Dockerfile @@ -10,11 +10,11 @@ RUN dnf -y update \ && dnf -y groupinstall "Development Tools" \ && dnf clean all \ && rm -rf /var/cache/dnf -# Install CMake 3.16.4 -RUN wget "https://cmake.org/files/v3.16/cmake-3.16.4-Linux-x86_64.sh" \ -&& chmod a+x cmake-3.16.4-Linux-x86_64.sh \ -&& ./cmake-3.16.4-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ -&& rm cmake-3.16.4-Linux-x86_64.sh +# Install CMake 3.17.2 +RUN wget "https://cmake.org/files/v3.17/cmake-3.17.2-Linux-x86_64.sh" \ +&& chmod a+x cmake-3.17.2-Linux-x86_64.sh \ +&& ./cmake-3.17.2-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ +&& rm cmake-3.17.2-Linux-x86_64.sh CMD [ "/usr/bin/bash" ] FROM base AS swig diff --git a/makefiles/docker/debian/Dockerfile b/makefiles/docker/debian/Dockerfile index 75587c0ffc..49841c8b48 100644 --- a/makefiles/docker/debian/Dockerfile +++ b/makefiles/docker/debian/Dockerfile @@ -10,11 +10,11 @@ RUN apt-get update -qq \ autoconf libtool zlib1g-dev lsb-release \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* -# Install CMake 3.16.4 -RUN wget "https://cmake.org/files/v3.16/cmake-3.16.4-Linux-x86_64.sh" \ -&& chmod a+x cmake-3.16.4-Linux-x86_64.sh \ -&& ./cmake-3.16.4-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ -&& rm cmake-3.16.4-Linux-x86_64.sh +# Install CMake 3.17.2 +RUN wget "https://cmake.org/files/v3.17/cmake-3.17.2-Linux-x86_64.sh" \ +&& chmod a+x cmake-3.17.2-Linux-x86_64.sh \ +&& ./cmake-3.17.2-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ +&& rm cmake-3.17.2-Linux-x86_64.sh CMD [ "/bin/bash" ] FROM base AS swig diff --git a/makefiles/docker/ubuntu/Dockerfile b/makefiles/docker/ubuntu/Dockerfile index 47d27c0789..4618db69c7 100644 --- a/makefiles/docker/ubuntu/Dockerfile +++ b/makefiles/docker/ubuntu/Dockerfile @@ -10,11 +10,11 @@ RUN apt-get update -qq \ autoconf libtool zlib1g-dev lsb-release \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* -# Install CMake 3.16.4 -RUN wget "https://cmake.org/files/v3.16/cmake-3.16.4-Linux-x86_64.sh" \ -&& chmod a+x cmake-3.16.4-Linux-x86_64.sh \ -&& ./cmake-3.16.4-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ -&& rm cmake-3.16.4-Linux-x86_64.sh +# Install CMake 3.17.2 +RUN wget "https://cmake.org/files/v3.17/cmake-3.17.2-Linux-x86_64.sh" \ +&& chmod a+x cmake-3.17.2-Linux-x86_64.sh \ +&& ./cmake-3.17.2-Linux-x86_64.sh --prefix=/usr/local/ --skip-license \ +&& rm cmake-3.17.2-Linux-x86_64.sh CMD [ "/usr/bin/bash" ] FROM base AS swig diff --git a/tools/docker/manylinux1.Dockerfile b/tools/docker/manylinux1.Dockerfile index 6e2c6415d5..fd4e6bded9 100644 --- a/tools/docker/manylinux1.Dockerfile +++ b/tools/docker/manylinux1.Dockerfile @@ -20,11 +20,11 @@ RUN yum -y update \ && yum clean all \ && rm -rf /var/cache/yum -# Install CMake 3.16.4 -RUN wget "https://cmake.org/files/v3.16/cmake-3.16.4-Linux-x86_64.sh" \ -&& chmod a+x cmake-3.16.4-Linux-x86_64.sh \ -&& ./cmake-3.16.4-Linux-x86_64.sh --prefix=/usr --skip-license \ -&& rm cmake-3.16.4-Linux-x86_64.sh +# Install CMake 3.17.2 +RUN wget "https://cmake.org/files/v3.17/cmake-3.17.2-Linux-x86_64.sh" \ +&& chmod a+x cmake-3.17.2-Linux-x86_64.sh \ +&& ./cmake-3.17.2-Linux-x86_64.sh --prefix=/usr --skip-license \ +&& rm cmake-3.17.2-Linux-x86_64.sh # Install Swig RUN curl --location-trusted \