Skip to content

Commit c71ea54

Browse files
committed
update golang to 1.24.11 and runc to v1.3.4 in Dockerfile
1 parent ad0a91b commit c71ea54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ${BASE_IMAGE} as build
33

44
ARG OS_ARCH="amd64"
55
# See https://go.dev/dl/
6-
ARG GOLANG_VERSION="1.24.10"
6+
ARG GOLANG_VERSION="1.24.11"
77

88
ENV DEBIAN_FRONTEND=noninteractive
99
RUN apt-get -y update
@@ -21,7 +21,7 @@ RUN go version
2121
# Build runc from source
2222
FROM build as runc
2323
WORKDIR /src
24-
ARG RUNC_VERSION="v1.3.3"
24+
ARG RUNC_VERSION="v1.3.4"
2525
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${RUNC_VERSION} https://github.com/opencontainers/runc /src/runc
2626
WORKDIR /src/runc
2727
RUN make

0 commit comments

Comments
 (0)