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 af8dddfbfd
commit ca96930283
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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