From ffb53175d55fb1a0046aea04d3e3d1dd3616e1e3 Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Thu, 23 Sep 2021 23:05:21 +0200 Subject: [PATCH] tools/docker: Clean wget -q --- tools/docker/amd64/centos-7.Dockerfile | 2 +- tools/docker/amd64/centos-8.Dockerfile | 2 +- tools/docker/amd64/debian-10.Dockerfile | 2 +- tools/docker/amd64/debian-11.Dockerfile | 2 +- tools/docker/amd64/ubuntu-16.04.Dockerfile | 2 +- tools/docker/amd64/ubuntu-18.04.Dockerfile | 2 +- tools/docker/python/amd64/manylinux.Dockerfile | 2 +- tools/docker/python/arm64v8/manylinux.Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tools/docker/amd64/centos-7.Dockerfile b/tools/docker/amd64/centos-7.Dockerfile index 375877c160..d75ee8a445 100644 --- a/tools/docker/amd64/centos-7.Dockerfile +++ b/tools/docker/amd64/centos-7.Dockerfile @@ -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 diff --git a/tools/docker/amd64/centos-8.Dockerfile b/tools/docker/amd64/centos-8.Dockerfile index 507ad5c226..d37128c649 100644 --- a/tools/docker/amd64/centos-8.Dockerfile +++ b/tools/docker/amd64/centos-8.Dockerfile @@ -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 diff --git a/tools/docker/amd64/debian-10.Dockerfile b/tools/docker/amd64/debian-10.Dockerfile index ebe27eeb7f..dc64147784 100644 --- a/tools/docker/amd64/debian-10.Dockerfile +++ b/tools/docker/amd64/debian-10.Dockerfile @@ -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 diff --git a/tools/docker/amd64/debian-11.Dockerfile b/tools/docker/amd64/debian-11.Dockerfile index f082ddfbd9..2984be8628 100644 --- a/tools/docker/amd64/debian-11.Dockerfile +++ b/tools/docker/amd64/debian-11.Dockerfile @@ -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 diff --git a/tools/docker/amd64/ubuntu-16.04.Dockerfile b/tools/docker/amd64/ubuntu-16.04.Dockerfile index 2be670701e..4b287b3f0f 100644 --- a/tools/docker/amd64/ubuntu-16.04.Dockerfile +++ b/tools/docker/amd64/ubuntu-16.04.Dockerfile @@ -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 diff --git a/tools/docker/amd64/ubuntu-18.04.Dockerfile b/tools/docker/amd64/ubuntu-18.04.Dockerfile index 6e5fd594b5..7f8791d6e7 100644 --- a/tools/docker/amd64/ubuntu-18.04.Dockerfile +++ b/tools/docker/amd64/ubuntu-18.04.Dockerfile @@ -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 diff --git a/tools/docker/python/amd64/manylinux.Dockerfile b/tools/docker/python/amd64/manylinux.Dockerfile index ac268ac5d6..b536ee0e4e 100644 --- a/tools/docker/python/amd64/manylinux.Dockerfile +++ b/tools/docker/python/amd64/manylinux.Dockerfile @@ -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 diff --git a/tools/docker/python/arm64v8/manylinux.Dockerfile b/tools/docker/python/arm64v8/manylinux.Dockerfile index 169a7a2e9a..b2ddbcf9d9 100644 --- a/tools/docker/python/arm64v8/manylinux.Dockerfile +++ b/tools/docker/python/arm64v8/manylinux.Dockerfile @@ -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