tools/docker: Clean wget -q

This commit is contained in:
Mizux Seiha
2021-09-23 23:05:21 +02:00
parent 56ea1aa5ab
commit ffb53175d5
8 changed files with 8 additions and 8 deletions

View File

@@ -22,7 +22,7 @@ CMD ["/usr/bin/bash", "--login"]
# RUN gcc --version
# Install CMake 3.21.1
RUN wget "https://cmake.org/files/v3.21/cmake-3.21.1-linux-x86_64.sh" \
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/local/ --skip-license \
&& rm cmake-3.21.1-linux-x86_64.sh

View File

@@ -13,7 +13,7 @@ ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]
# Install CMake 3.21.1
RUN wget "https://cmake.org/files/v3.21/cmake-3.21.1-linux-x86_64.sh" \
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/local/ --skip-license \
&& rm cmake-3.21.1-linux-x86_64.sh

View File

@@ -14,7 +14,7 @@ ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/usr/bin/bash"]
# Install CMake 3.21.1
RUN wget "https://cmake.org/files/v3.21/cmake-3.21.1-linux-x86_64.sh" \
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/local/ --skip-license \
&& rm cmake-3.21.1-linux-x86_64.sh

View File

@@ -14,7 +14,7 @@ ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/usr/bin/bash"]
# Install CMake 3.21.1
RUN wget "https://cmake.org/files/v3.21/cmake-3.21.1-linux-x86_64.sh" \
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/local/ --skip-license \
&& rm cmake-3.21.1-linux-x86_64.sh

View File

@@ -32,7 +32,7 @@ RUN update-alternatives \
--slave /usr/bin/gcc-ranlib gcc-ranlib /usr/bin/gcc-ranlib-9
# Install CMake 3.21.1
RUN wget "https://cmake.org/files/v3.21/cmake-3.21.1-linux-x86_64.sh" \
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/local/ --skip-license \
&& rm cmake-3.21.1-linux-x86_64.sh

View File

@@ -14,7 +14,7 @@ ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/usr/bin/bash"]
# Install CMake 3.21.1
RUN wget "https://cmake.org/files/v3.21/cmake-3.21.1-linux-x86_64.sh" \
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/local/ --skip-license \
&& rm cmake-3.21.1-linux-x86_64.sh

View File

@@ -23,7 +23,7 @@ ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]
# Install CMake 3.21.1
RUN wget "https://cmake.org/files/v3.21/cmake-3.21.1-linux-x86_64.sh" \
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

View File

@@ -25,7 +25,7 @@ ENTRYPOINT ["/usr/bin/bash", "-c"]
CMD ["/usr/bin/bash"]
# Install CMake 3.21.1
RUN wget "https://cmake.org/files/v3.21/cmake-3.21.1-linux-aarch64.sh" \
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