aboutsummaryrefslogtreecommitdiffstats
path: root/tools/docker
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-07-04 11:12:55 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-07-04 15:05:30 +0200
commitc7d7f10bdff703e4a3c0414e8a33d4e45c91eb35 (patch)
tree0dff0ee1f98dbfa3ad8776112053a450d176592b /tools/docker
parent9573094ce235bd9afe88f5da27a47dd6bcc1e13b (diff)
go.mod: vendor golangci-lint
Diffstat (limited to 'tools/docker')
-rw-r--r--tools/docker/env/Dockerfile7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/docker/env/Dockerfile b/tools/docker/env/Dockerfile
index 22b99f5cc..87184f84a 100644
--- a/tools/docker/env/Dockerfile
+++ b/tools/docker/env/Dockerfile
@@ -2,7 +2,7 @@
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
# The image provides dev environment suitable for syzkaller development/testing.
-# It includes Go toolchain, C/C++ cross-compilers, go-fuzz and golangci-lint.
+# It includes Go toolchain, C/C++ cross-compilers and go-fuzz.
# The image is available as gcr.io/syzkaller/env.
@@ -36,11 +36,6 @@ RUN curl https://dl.google.com/go/go1.14.2.linux-amd64.tar.gz | tar -C /usr/loca
ENV PATH /usr/local/go/bin:/gopath/bin:$PATH
ENV GOPATH /gopath
-# For golangci-lint we need only the binary.
-RUN GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.26.0 && \
- mv /gopath/bin/* /usr/local/bin/ && \
- rm -rf /gopath
-
# For go-fuzz we also need sources (go-fuzz-dep).
RUN go get github.com/dvyukov/go-fuzz/go-fuzz github.com/dvyukov/go-fuzz/go-fuzz-build