File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ RUN go version
2121# Build runc from source
2222FROM build AS runc
2323WORKDIR /src
24- ARG RUNC_VERSION="v1.4.0 "
24+ ARG RUNC_VERSION="v1.3.4 "
2525RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${RUNC_VERSION} https://github.com/opencontainers/runc /src/runc
2626WORKDIR /src/runc
2727RUN make
@@ -37,19 +37,19 @@ RUN make
3737# Build containerd from source
3838FROM build AS containerd
3939WORKDIR /src
40- ARG CONTAINERD_VERSION="main "
41- # Clone from upstream main.
40+ ARG CONTAINERD_VERSION="v2.2.1 "
41+ # Clone from upstream
4242RUN git -c advice.detachedHead=false clone --branch=${CONTAINERD_VERSION} https://github.com/containerd/containerd /src/containerd
4343WORKDIR /src/containerd
4444RUN git remote add rpardini https://github.com/rpardini/containerd.git && git fetch rpardini
45- RUN git -c user.email="ricardo@pardini.net" -c user.name="Ricardo Pardini" cherry-pick 882150d0acc584b68204f3ef3d2c11479ae81cf0
45+ RUN git -c user.email="ricardo@pardini.net" -c user.name="Ricardo Pardini" cherry-pick 36614f79241cde4e24e6e35dd229c775a791e577
4646# Build it
4747RUN BUILDTAGS=no_btrfs GODEBUG=yes make
4848
4949# Build nerdctl from source
5050FROM build AS nerdctl
5151WORKDIR /src
52- ARG NERDCTL_VERSION="v2.2.0 "
52+ ARG NERDCTL_VERSION="v2.2.1 "
5353RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${NERDCTL_VERSION} https://github.com/containerd/nerdctl /src/nerdctl
5454WORKDIR /src/nerdctl
5555RUN make
You can’t perform that action at this time.
0 commit comments