We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d94a2e commit 7f23138Copy full SHA for 7f23138
1 file changed
Dockerfile
@@ -1,7 +1,7 @@
1
# SPDX-FileCopyrightText: 2025 SAP SE or an SAP affiliate company
2
# SPDX-License-Identifier: Apache-2.0
3
4
-FROM golang:1.25.4-alpine3.22 AS builder
+FROM golang:1.25.5-alpine3.22 AS builder
5
6
RUN apk add --no-cache --no-progress ca-certificates gcc git make musl-dev
7
@@ -14,7 +14,7 @@ RUN make -C /src install PREFIX=/pkg GOTOOLCHAIN=local
14
# To only build the tests run: docker build . --target test
15
# We can't do `FROM builder AS test` here, as then make prepare-static-check would not be cached during interactive use when developing
16
# and caching all the tools, especially golangci-lint, takes a few minutes.
17
-FROM golang:1.25.4-alpine3.22 AS test
+FROM golang:1.25.5-alpine3.22 AS test
18
19
COPY Makefile /src/Makefile
20
0 commit comments