Skip to content

Commit c76c018

Browse files
committed
runc 1.3.4; containerd 2.2.1 + HostFromRootfs fix; nerdctl 2.2.1
1 parent 747269d commit c76c018

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
@@ -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.4.0"
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
@@ -37,19 +37,19 @@ RUN make
3737
# Build containerd from source
3838
FROM build AS containerd
3939
WORKDIR /src
40-
ARG CONTAINERD_VERSION="main"
41-
# Clone from upstream main.
40+
ARG CONTAINERD_VERSION="v2.2.1"
41+
# Clone from upstream
4242
RUN git -c advice.detachedHead=false clone --branch=${CONTAINERD_VERSION} https://github.com/containerd/containerd /src/containerd
4343
WORKDIR /src/containerd
4444
RUN 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
4747
RUN BUILDTAGS=no_btrfs GODEBUG=yes make
4848

4949
# Build nerdctl from source
5050
FROM build AS nerdctl
5151
WORKDIR /src
52-
ARG NERDCTL_VERSION="v2.2.0"
52+
ARG NERDCTL_VERSION="v2.2.1"
5353
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${NERDCTL_VERSION} https://github.com/containerd/nerdctl /src/nerdctl
5454
WORKDIR /src/nerdctl
5555
RUN make

0 commit comments

Comments
 (0)