@@ -3,7 +3,7 @@ FROM ${BASE_IMAGE} as build
3
3
4
4
ARG OS_ARCH="amd64"
5
5
# See https://go.dev/dl/
6
- ARG GOLANG_VERSION="1.23.9 "
6
+ ARG GOLANG_VERSION="1.24.3 "
7
7
8
8
ENV DEBIAN_FRONTEND=noninteractive
9
9
RUN apt-get -y update
@@ -21,7 +21,7 @@ RUN go version
21
21
# Build runc from source
22
22
FROM build as runc
23
23
WORKDIR /src
24
- ARG RUNC_VERSION="v1.1.15 "
24
+ ARG RUNC_VERSION="v1.3.0 "
25
25
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${RUNC_VERSION} https://github.com/opencontainers/runc /src/runc
26
26
WORKDIR /src/runc
27
27
RUN make
@@ -37,7 +37,7 @@ RUN make
37
37
# Build containerd from source
38
38
FROM build as containerd
39
39
WORKDIR /src
40
- ARG CONTAINERD_VERSION="v1.7.25 "
40
+ ARG CONTAINERD_VERSION="v2.1.1 "
41
41
# When changing above, also change the version in the debian/control file
42
42
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${CONTAINERD_VERSION} https://github.com/containerd/containerd /src/containerd
43
43
WORKDIR /src/containerd
@@ -46,7 +46,7 @@ RUN BUILDTAGS=no_btrfs GODEBUG=yes make
46
46
# Build nerdctl from source
47
47
FROM build as nerdctl
48
48
WORKDIR /src
49
- ARG NERDCTL_VERSION="v1.7.7 "
49
+ ARG NERDCTL_VERSION="v2.1.2 "
50
50
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${NERDCTL_VERSION} https://github.com/containerd/nerdctl /src/nerdctl
51
51
WORKDIR /src/nerdctl
52
52
RUN make
@@ -62,7 +62,7 @@ RUN make
62
62
# Build cri-tools from source
63
63
FROM build as cri-tools
64
64
WORKDIR /src
65
- ARG CRI_TOOLS_VERSION="v1.32 .0"
65
+ ARG CRI_TOOLS_VERSION="v1.33 .0"
66
66
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
67
67
WORKDIR /src/cri-tools
68
68
RUN make
0 commit comments