We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 676c865 commit 08cf10eCopy full SHA for 08cf10e
Dockerfile
@@ -12,9 +12,7 @@ RUN apt-get update && apt-get install -y \
12
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
13
14
# Install golangci-lint
15
-RUN wget https://install.goreleaser.com/github.com/golangci/golangci-lint.sh && \
16
- chmod +x ./golangci-lint.sh && \
17
- ./golangci-lint.sh -b $GOPATH/bin && \
+RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.44.0 && \
18
golangci-lint linters
19
20
COPY .golangci.yml ${GOPATH}/src/dummy/.golangci.yml
0 commit comments