tools/docker: Fix cmake download

cmake.org certificate seems to has expired yesterday...
This commit is contained in:
Mizux Seiha
2021-09-30 17:19:21 +02:00
parent e8684d9b67
commit bda32dd203
2 changed files with 10 additions and 10 deletions

View File

@@ -22,11 +22,11 @@ RUN yum -y update \
ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]
# Install CMake 3.21.1
RUN wget -q "https://cmake.org/files/v3.21/cmake-3.21.1-linux-x86_64.sh" \
&& chmod a+x cmake-3.21.1-linux-x86_64.sh \
&& ./cmake-3.21.1-linux-x86_64.sh --prefix=/usr --skip-license \
&& rm cmake-3.21.1-linux-x86_64.sh
# Install CMake 3.21.3
RUN wget -q --no-check-certificate "https://cmake.org/files/v3.21/cmake-3.21.3-linux-x86_64.sh" \
&& chmod a+x cmake-3.21.3-linux-x86_64.sh \
&& ./cmake-3.21.3-linux-x86_64.sh --prefix=/usr --skip-license \
&& rm cmake-3.21.3-linux-x86_64.sh
# Install Swig 4.0.2
RUN curl --location-trusted \

View File

@@ -24,11 +24,11 @@ RUN yum -y update \
ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]
# Install CMake 3.21.1
RUN wget -q "https://cmake.org/files/v3.21/cmake-3.21.1-linux-aarch64.sh" \
&& chmod a+x cmake-3.21.1-linux-aarch64.sh \
&& ./cmake-3.21.1-linux-aarch64.sh --prefix=/usr --skip-license \
&& rm cmake-3.21.1-linux-aarch64.sh
# Install CMake 3.21.3
RUN wget -q --no-check-certificate "https://cmake.org/files/v3.21/cmake-3.21.3-linux-aarch64.sh" \
&& chmod a+x cmake-3.21.3-linux-aarch64.sh \
&& ./cmake-3.21.3-linux-aarch64.sh --prefix=/usr --skip-license \
&& rm cmake-3.21.3-linux-aarch64.sh
# Install Swig 4.0.2
RUN curl --location-trusted \