From 272a19392b9a02ae237dd5ad7939988d26b8a465 Mon Sep 17 00:00:00 2001 From: Mark Bates Date: Thu, 13 Jun 2019 16:29:04 -0400 Subject: [PATCH] Revert "Decrease docker image size (#1694)" This reverts commit c74db77ca0ab594f9ed05df1755435f2d652b448. --- Dockerfile.build | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.build b/Dockerfile.build index e34b6b091..12bac5bc3 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -20,12 +20,12 @@ RUN go get -u github.com/golang/dep/cmd/dep \ && go get -v -u github.com/gobuffalo/packr/v2/packr2 \ && go get -v -u github.com/markbates/filetest \ && go get -v -u github.com/markbates/grift \ -&& go get -v -u github.com/markbates/refresh \ -&& rm -rfv $GOPATH/src && mkdir -p $BP +&& go get -v -u github.com/markbates/refresh -# Install golangci -RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.16.0 +RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.16.0 +# clear out the src so that we can fill it with new versions +RUN rm -rfv $GOPATH/src && mkdir -p $BP WORKDIR $BP ADD go.mod .