# The linter, pinned by hash, with this repository linted inside it. # Building this file is how linting happens; see script/lint. Nothing # lints on the host, so the answer is the same everywhere. # golangci/golangci-lint:v2.12.2, 2026-09-07 FROM golangci/golangci-lint:v2.12.2@sha256:5cceeef04e53efe1470638d4b4b4f5ceefd574955ab3941b2d9a68a8c9ad5240 WORKDIR /src COPY go.mod go.sum ./ RUN go mod download COPY . . RUN golangci-lint run --timeout 5m