Don’t pass -u to get get inside Go build image dockerfile (#7455)

This commit is contained in:
Matt Keeler 2020-03-16 15:26:07 -04:00 committed by GitHub
parent 251c745d0a
commit 646c9f5896
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,6 @@ ARG GOTOOLS="github.com/elazarl/go-bindata-assetfs/... \
github.com/axw/gocov/gocov \
gopkg.in/matm/v1/gocov-html"
RUN GO111MODULE=on go get -u -v ${GOTOOLS} && mkdir -p /consul
RUN GO111MODULE=on go get -v ${GOTOOLS} && mkdir -p /consul
WORKDIR /consul