build: ensure make go-build-image target builds tools in isolation (#10534)

This commit is contained in:
R.B. Boyer 2021-06-30 11:36:02 -05:00 committed by GitHub
parent 128d4444f5
commit 9d02770a99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -8,6 +8,14 @@ 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 -v ${GOTOOLS} && mkdir -p /consul RUN mkdir -p .gotools && \
cd .gotools && \
for tool in ${GOTOOLS}; do \
echo "=== TOOL: ${tool}" ; \
rm -rf go.mod go.sum ; \
go mod init consul-tools ; \
go get -v "${tool}" ; \
done && \
rm -rf go.mod go.sum
WORKDIR /consul WORKDIR /consul