You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
# Download gpg
2
-
FROM alpine:3.22 AS gpg
2
+
FROM alpine:3.22.1 AS gpg
3
3
RUN apk add --no-cache gnupg
4
4
5
5
6
6
# runc
7
-
FROM golang:1.24-alpine3.22 AS runc
8
-
ARG RUNC_VERSION=v1.3.0
7
+
FROM golang:1.25.1-alpine3.22 AS runc
8
+
ARG RUNC_VERSION=v1.3.1
9
9
# Download runc binary release since static build doesn't work with musl libc anymore since 1.1.8, see https://github.com/opencontainers/runc/issues/3950
10
10
RUN set -eux; \
11
11
ARCH="`uname -m | sed 's!x86_64!amd64!; s!aarch64!arm64!'`"; \
@@ -16,7 +16,7 @@ RUN set -eux; \
16
16
17
17
18
18
# podman build base
19
-
FROM golang:1.24-alpine3.22 AS podmanbuildbase
19
+
FROM golang:1.25.1-alpine3.22 AS podmanbuildbase
20
20
RUN apk add --update --no-cache git make gcc pkgconf musl-dev \
0 commit comments