make+tools: dockerize linting

This commit is contained in:
Oliver Gugger
2022-02-10 16:01:59 +01:00
parent 28ea2736a0
commit 09406f613a
2 changed files with 23 additions and 9 deletions

16
tools/Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM golang:1.17.3-buster
RUN apt-get update && apt-get install -y git
ENV GOCACHE=/tmp/build/.cache
ENV GOMODCACHE=/tmp/build/.modcache
COPY . /tmp/tools
RUN cd /tmp \
&& mkdir -p /tmp/build/.cache \
&& mkdir -p /tmp/build/.modcache \
&& cd /tmp/tools \
&& go install -trimpath -tags=tools github.com/golangci/golangci-lint/cmd/golangci-lint \
&& chmod -R 777 /tmp/build/
WORKDIR /build