build: ensure make go-build-image target builds tools in isolation (#10534)
This commit is contained in:
parent
128d4444f5
commit
9d02770a99
|
@ -8,6 +8,14 @@ ARG GOTOOLS="github.com/elazarl/go-bindata-assetfs/... \
|
|||
github.com/axw/gocov/gocov \
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue