diff --git a/3rdparty/gcp-guest-agent/Dockerfile b/3rdparty/gcp-guest-agent/Dockerfile index 805c892a0..eefb36cd5 100644 --- a/3rdparty/gcp-guest-agent/Dockerfile +++ b/3rdparty/gcp-guest-agent/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \ # Install Go ARG GO_VER=1.18 -RUN wget https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ +RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \ rm go${GO_VER}.linux-amd64.tar.gz ENV PATH ${PATH}:/usr/local/go/bin diff --git a/Dockerfile.build b/Dockerfile.build index 5f3ccbcee..7554dd739 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -14,7 +14,7 @@ RUN dnf -y update && \ # Install Go ARG GO_VER=1.18 -RUN wget https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ +RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \ rm go${GO_VER}.linux-amd64.tar.gz ENV PATH ${PATH}:/usr/local/go/bin diff --git a/access_manager/Dockerfile b/access_manager/Dockerfile index fa0150710..1fdecaa76 100644 --- a/access_manager/Dockerfile +++ b/access_manager/Dockerfile @@ -6,7 +6,7 @@ RUN dnf -y update && \ # Install Go ARG GO_VER=1.18.3 -RUN wget https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ +RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \ rm go${GO_VER}.linux-amd64.tar.gz ENV PATH ${PATH}:/usr/local/go/bin diff --git a/hack/azure-snp-idkey-digest/Dockerfile b/hack/azure-snp-idkey-digest/Dockerfile index 951f9bf56..4c54ca329 100644 --- a/hack/azure-snp-idkey-digest/Dockerfile +++ b/hack/azure-snp-idkey-digest/Dockerfile @@ -3,9 +3,9 @@ RUN apt-get update && apt-get install -y \ build-essential \ libcurl4-openssl-dev \ wget -RUN wget https://packages.microsoft.com/repos/azurecore/pool/main/a/azguestattestation1/azguestattestation1_1.0.2_amd64.deb \ +RUN wget -q https://packages.microsoft.com/repos/azurecore/pool/main/a/azguestattestation1/azguestattestation1_1.0.2_amd64.deb \ && apt-get install /azguestattestation1_1.0.2_amd64.deb -RUN wget https://github.com/Azure/confidential-computing-cvm-guest-attestation/raw/4bd89d2808912fbaa319e8853e6f5e1e245d45ca/cvm-guest-attestation-linux-app/main.cpp \ +RUN wget -q https://github.com/Azure/confidential-computing-cvm-guest-attestation/raw/4bd89d2808912fbaa319e8853e6f5e1e245d45ca/cvm-guest-attestation-linux-app/main.cpp \ && sed -i s/test.attest.azure.net/attest.azure.net/ main.cpp \ && touch Utils.h \ && g++ -Os -I/usr/include/azguestattestation1 -oclient main.cpp -lazguestattestation diff --git a/hack/qemu-metadata-api/Dockerfile b/hack/qemu-metadata-api/Dockerfile index b6c1ead41..6fa12caca 100644 --- a/hack/qemu-metadata-api/Dockerfile +++ b/hack/qemu-metadata-api/Dockerfile @@ -5,7 +5,7 @@ RUN dnf -y update && \ dnf clean all ARG GO_VER=1.18.3 -RUN wget https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ +RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \ rm go${GO_VER}.linux-amd64.tar.gz ENV PATH ${PATH}:/usr/local/go/bin diff --git a/joinservice/Dockerfile b/joinservice/Dockerfile index f64ed600f..a379f382f 100644 --- a/joinservice/Dockerfile +++ b/joinservice/Dockerfile @@ -6,7 +6,7 @@ RUN dnf -y update && \ # Install Go ARG GO_VER=1.18.3 -RUN wget https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ +RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \ rm go${GO_VER}.linux-amd64.tar.gz ENV PATH ${PATH}:/usr/local/go/bin diff --git a/kms/Dockerfile b/kms/Dockerfile index d2ff240eb..b3e097a66 100644 --- a/kms/Dockerfile +++ b/kms/Dockerfile @@ -6,7 +6,7 @@ RUN dnf -y update && \ # Install Go ARG GO_VER=1.18.3 -RUN wget https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ +RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \ rm go${GO_VER}.linux-amd64.tar.gz ENV PATH ${PATH}:/usr/local/go/bin diff --git a/proto/Dockerfile.gen-proto b/proto/Dockerfile.gen-proto index 814515cbf..b8859dd43 100644 --- a/proto/Dockerfile.gen-proto +++ b/proto/Dockerfile.gen-proto @@ -9,12 +9,12 @@ ENV DEBIAN_FRONTEND="noninteractive" RUN apt-get update && apt-get install -y wget tar unzip # Install Go -RUN wget https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ +RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && rm go${GO_VER}.linux-amd64.tar.gz ENV PATH ${PATH}:/usr/local/go/bin:/root/go/bin -RUN wget https://github.com/protocolbuffers/protobuf/releases/download/v${PB_VER}/protoc-${PB_VER}-linux-x86_64.zip && \ +RUN wget -q https://github.com/protocolbuffers/protobuf/releases/download/v${PB_VER}/protoc-${PB_VER}-linux-x86_64.zip && \ unzip protoc-${PB_VER}-linux-x86_64.zip -d /root/.local && \ cp /root/.local/bin/protoc /usr/local/bin/protoc ENV PATH="$PATH:/root/.local/bin" diff --git a/verify/Dockerfile b/verify/Dockerfile index 7ec25fb67..32dfbb315 100644 --- a/verify/Dockerfile +++ b/verify/Dockerfile @@ -6,7 +6,7 @@ RUN dnf -y update && \ # Install Go ARG GO_VER=1.18 -RUN wget https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ +RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \ rm go${GO_VER}.linux-amd64.tar.gz ENV PATH ${PATH}:/usr/local/go/bin