Skip to content

Commit cb77c33

Browse files
committed
golang 1.24.3; runc 1.3.0; containerd 2.2.1; nerdctl 2.1.2; cri-tools 1.33.0
1 parent b849297 commit cb77c33

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

Lines changed: 5 additions & 5 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.23.9"
6+
ARG GOLANG_VERSION="1.24.3"
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.1.15"
24+
ARG RUNC_VERSION="v1.3.0"
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
@@ -37,7 +37,7 @@ RUN make
3737
# Build containerd from source
3838
FROM build as containerd
3939
WORKDIR /src
40-
ARG CONTAINERD_VERSION="v1.7.25"
40+
ARG CONTAINERD_VERSION="v2.1.1"
4141
# When changing above, also change the version in the debian/control file
4242
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${CONTAINERD_VERSION} https://github.com/containerd/containerd /src/containerd
4343
WORKDIR /src/containerd
@@ -46,7 +46,7 @@ RUN BUILDTAGS=no_btrfs GODEBUG=yes make
4646
# Build nerdctl from source
4747
FROM build as nerdctl
4848
WORKDIR /src
49-
ARG NERDCTL_VERSION="v1.7.7"
49+
ARG NERDCTL_VERSION="v2.1.2"
5050
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${NERDCTL_VERSION} https://github.com/containerd/nerdctl /src/nerdctl
5151
WORKDIR /src/nerdctl
5252
RUN make
@@ -62,7 +62,7 @@ RUN make
6262
# Build cri-tools from source
6363
FROM build as cri-tools
6464
WORKDIR /src
65-
ARG CRI_TOOLS_VERSION="v1.32.0"
65+
ARG CRI_TOOLS_VERSION="v1.33.0"
6666
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${CRI_TOOLS_VERSION} https://github.com/kubernetes-sigs/cri-tools /src/cri-tools
6767
WORKDIR /src/cri-tools
6868
RUN make

0 commit comments

Comments
 (0)