Browse Source

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

pull/7456/head
Matt Keeler 5 years ago committed by GitHub
parent
commit
646c9f5896
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      build-support/docker/Build-Go.dockerfile

2
build-support/docker/Build-Go.dockerfile

@ -8,6 +8,6 @@ ARG GOTOOLS="github.com/elazarl/go-bindata-assetfs/... \
github.com/axw/gocov/gocov \ github.com/axw/gocov/gocov \
gopkg.in/matm/v1/gocov-html" 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 WORKDIR /consul

Loading…
Cancel
Save