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 ca7b7a4 commit c4f5e37Copy full SHA for c4f5e37
build/Dockerfile
@@ -1,5 +1,5 @@
1
# stage 1 building the code
2
-FROM golang:1.22 as builder
+FROM golang:1.24.3 as builder
3
4
ARG VERSION
5
ARG SHORT_COMMIT
@@ -12,7 +12,7 @@ RUN APP_VERSION=${VERSION#v} \
12
go build -trimpath -ldflags "-s -w -X main.version=$APP_VERSION -X main.commit=$SHORT_COMMIT -X main.date=$DATE" -o golangci-lint ./cmd/golangci-lint/main.go
13
14
# stage 2
15
-FROM golang:1.22
+FROM golang:1.24.3
16
# related to https://github.com/golangci/golangci-lint/issues/3107
17
ENV GOROOT /usr/local/go
18
# Set all directories as safe
0 commit comments