Signed-off-by: Alexander Morozov <lk4d4@docker.com>
| ... | ... |
@@ -102,8 +102,7 @@ ENV GOARM 5 |
| 102 | 102 |
# ENV GOFMT_VERSION 1.3.3 |
| 103 | 103 |
# RUN curl -sSL https://storage.googleapis.com/golang/go${GOFMT_VERSION}.$(go env GOOS)-$(go env GOARCH).tar.gz | tar -C /go/bin -xz --strip-components=2 go/bin/gofmt
|
| 104 | 104 |
|
| 105 |
-# Update this sha when we upgrade to go 1.5.0 |
|
| 106 |
-ENV GO_TOOLS_COMMIT 069d2f3bcb68257b627205f0486d6cc69a231ff9 |
|
| 105 |
+ENV GO_TOOLS_COMMIT 823804e1ae08dbb14eb807afc7db9993bc9e3cc3 |
|
| 107 | 106 |
# Grab Go's cover tool for dead-simple code coverage testing |
| 108 | 107 |
# Grab Go's vet tool for examining go code to find suspicious constructs |
| 109 | 108 |
# and help prevent errors that the compiler might not catch |
| ... | ... |
@@ -112,7 +111,7 @@ RUN git clone https://github.com/golang/tools.git /go/src/golang.org/x/tools \ |
| 112 | 112 |
&& go install -v golang.org/x/tools/cmd/cover \ |
| 113 | 113 |
&& go install -v golang.org/x/tools/cmd/vet |
| 114 | 114 |
# Grab Go's lint tool |
| 115 |
-ENV GO_LINT_COMMIT f42f5c1c440621302702cb0741e9d2ca547ae80f |
|
| 115 |
+ENV GO_LINT_COMMIT 32a87160691b3c96046c0c678fe57c5bef761456 |
|
| 116 | 116 |
RUN git clone https://github.com/golang/lint.git /go/src/github.com/golang/lint \ |
| 117 | 117 |
&& (cd /go/src/github.com/golang/lint && git checkout -q $GO_LINT_COMMIT) \ |
| 118 | 118 |
&& go install -v github.com/golang/lint/golint |