Skip to content

Commit

Permalink
Update runc and containerd.
Browse files Browse the repository at this point in the history
Runc Release notes: https://github.com/opencontainers/runc/releases/tag/v1.1.12
Containerd release notes: https://github.com/containerd/containerd/releases/tag/v1.7.13

Signed-off-by: Arnaud Meukam <ameukam@gmail.com>
  • Loading branch information
ameukam committed Feb 1, 2024
1 parent bc14c96 commit ca8b6a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions images/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ RUN eval "$(gimme "${GO_VERSION}")" \
# stage for building containerd
FROM go-build as build-containerd
ARG TARGETARCH GO_VERSION
ARG CONTAINERD_VERSION="v1.7.5"
ARG CONTAINERD_VERSION="v1.7.13"
ARG CONTAINERD_CLONE_URL="https://github.com/containerd/containerd"
# we don't build with optional snapshotters, we never select any of these
# they're not ideal inside kind anyhow, and we save some disk space
Expand All @@ -135,7 +135,7 @@ RUN git clone --filter=tree:0 "${CONTAINERD_CLONE_URL}" /containerd \
# stage for building runc
FROM go-build as build-runc
ARG TARGETARCH GO_VERSION
ARG RUNC_VERSION="v1.1.9"
ARG RUNC_VERSION="v1.1.12"
ARG RUNC_CLONE_URL="https://github.com/opencontainers/runc"
RUN git clone --filter=tree:0 "${RUNC_CLONE_URL}" /runc \
&& cd /runc \
Expand Down

0 comments on commit ca8b6a8

Please sign in to comment.