Skip to content

Commit

Permalink
internal/quic/cmd/interop: use wget --no-verbose in Dockerfile
Browse files Browse the repository at this point in the history
Pass --no-verbose to wget to avoid spamming the build logs with
progress indicators.

Change-Id: I36a0b91f8dac09cc4055c5d5db3fc61c9b269d6e
Reviewed-on: https://go-review.googlesource.com/c/net/+/551495
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Jonathan Amsterdam <jba@google.com>
  • Loading branch information
neild committed Dec 19, 2023
1 parent c136d0c commit f12db26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/quic/cmd/interop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV GOVERSION=1.21.1

RUN platform=$(echo ${TARGETPLATFORM} | tr '/' '-') && \
filename="go${GOVERSION}.${platform}.tar.gz" && \
wget https://dl.google.com/go/${filename} && \
wget --no-verbose https://dl.google.com/go/${filename} && \
tar xfz ${filename} && \
rm ${filename}

Expand Down

0 comments on commit f12db26

Please sign in to comment.