tools/docker: Fix cmake download
cmake.org certificate seems to has expired yesterday...
This commit is contained in:
@@ -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 \
|
||||
|
||||
@@ -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 \
|
||||
|
||||
Reference in New Issue
Block a user