Skip to content

Commit

Permalink
runc 1.1.15; containerd 1.7.23; nerdctl 1.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
rpardini committed Nov 18, 2024
1 parent c0b5eb9 commit e78da49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN go version
# Build runc from source
FROM build as runc
WORKDIR /src
ARG RUNC_VERSION="v1.1.14"
ARG RUNC_VERSION="v1.1.15"
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${RUNC_VERSION} https://github.com/opencontainers/runc /src/runc
WORKDIR /src/runc
RUN make
Expand All @@ -37,7 +37,7 @@ RUN make
# Build containerd from source
FROM build as containerd
WORKDIR /src
ARG CONTAINERD_VERSION="v1.7.21"
ARG CONTAINERD_VERSION="v1.7.23"
# When changing above, also change the version in the debian/control file
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${CONTAINERD_VERSION} https://github.com/containerd/containerd /src/containerd
WORKDIR /src/containerd
Expand All @@ -46,7 +46,7 @@ RUN BUILDTAGS=no_btrfs make
# Build nerdctl from source
FROM build as nerdctl
WORKDIR /src
ARG NERDCTL_VERSION="v1.7.6"
ARG NERDCTL_VERSION="v1.7.7"
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${NERDCTL_VERSION} https://github.com/containerd/nerdctl /src/nerdctl
WORKDIR /src/nerdctl
RUN make
Expand Down

0 comments on commit e78da49

Please sign in to comment.