bump base image dependencies

This commit is contained in:
Benjamin Elder
2024-12-10 17:22:54 -08:00
parent 267142185f
commit c5e01fe28c

View File

@@ -122,7 +122,7 @@ RUN eval "$(gimme "${GO_VERSION}")" \
# stage for building containerd # stage for building containerd
FROM go-build AS build-containerd FROM go-build AS build-containerd
ARG TARGETARCH GO_VERSION ARG TARGETARCH GO_VERSION
ARG CONTAINERD_VERSION="v1.7.18" ARG CONTAINERD_VERSION="v1.7.24"
ARG CONTAINERD_CLONE_URL="https://github.com/containerd/containerd" ARG CONTAINERD_CLONE_URL="https://github.com/containerd/containerd"
# we don't build with optional snapshotters, we never select any of these # 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 # they're not ideal inside kind anyhow, and we save some disk space
@@ -140,7 +140,7 @@ RUN git clone --filter=tree:0 "${CONTAINERD_CLONE_URL}" /containerd \
# stage for building runc # stage for building runc
FROM go-build AS build-runc FROM go-build AS build-runc
ARG TARGETARCH GO_VERSION ARG TARGETARCH GO_VERSION
ARG RUNC_VERSION="v1.1.13" ARG RUNC_VERSION="v1.2.3"
ARG RUNC_CLONE_URL="https://github.com/opencontainers/runc" ARG RUNC_CLONE_URL="https://github.com/opencontainers/runc"
RUN git clone --filter=tree:0 "${RUNC_CLONE_URL}" /runc \ RUN git clone --filter=tree:0 "${RUNC_CLONE_URL}" /runc \
&& cd /runc \ && cd /runc \
@@ -155,7 +155,7 @@ RUN git clone --filter=tree:0 "${RUNC_CLONE_URL}" /runc \
FROM go-build AS build-crictl FROM go-build AS build-crictl
ARG TARGETARCH GO_VERSION ARG TARGETARCH GO_VERSION
ARG CRI_TOOLS_CLONE_URL="https://github.com/kubernetes-sigs/cri-tools" ARG CRI_TOOLS_CLONE_URL="https://github.com/kubernetes-sigs/cri-tools"
ARG CRICTL_VERSION="v1.30.0" ARG CRICTL_VERSION="v1.32.0"
RUN git clone --filter=tree:0 "${CRI_TOOLS_CLONE_URL}" /cri-tools \ RUN git clone --filter=tree:0 "${CRI_TOOLS_CLONE_URL}" /cri-tools \
&& cd /cri-tools \ && cd /cri-tools \
&& git checkout "${CRICTL_VERSION}" \ && git checkout "${CRICTL_VERSION}" \
@@ -168,7 +168,7 @@ RUN git clone --filter=tree:0 "${CRI_TOOLS_CLONE_URL}" /cri-tools \
# stage for building cni-plugins # stage for building cni-plugins
FROM go-build AS build-cni FROM go-build AS build-cni
ARG TARGETARCH GO_VERSION ARG TARGETARCH GO_VERSION
ARG CNI_PLUGINS_VERSION="v1.5.1" ARG CNI_PLUGINS_VERSION="v1.6.1"
ARG CNI_PLUGINS_CLONE_URL="https://github.com/containernetworking/plugins" ARG CNI_PLUGINS_CLONE_URL="https://github.com/containernetworking/plugins"
RUN git clone --filter=tree:0 "${CNI_PLUGINS_CLONE_URL}" /cni-plugins \ RUN git clone --filter=tree:0 "${CNI_PLUGINS_CLONE_URL}" /cni-plugins \
&& cd /cni-plugins \ && cd /cni-plugins \
@@ -189,7 +189,7 @@ RUN git clone --filter=tree:0 "${CNI_PLUGINS_CLONE_URL}" /cni-plugins \
# stage for building containerd-fuse-overlayfs # stage for building containerd-fuse-overlayfs
FROM go-build AS build-fuse-overlayfs FROM go-build AS build-fuse-overlayfs
ARG TARGETARCH GO_VERSION ARG TARGETARCH GO_VERSION
ARG CONTAINERD_FUSE_OVERLAYFS_VERSION="v1.0.8" ARG CONTAINERD_FUSE_OVERLAYFS_VERSION="v2.1.0"
ARG CONTAINERD_FUSE_OVERLAYFS_CLONE_URL="https://github.com/containerd/fuse-overlayfs-snapshotter" ARG CONTAINERD_FUSE_OVERLAYFS_CLONE_URL="https://github.com/containerd/fuse-overlayfs-snapshotter"
RUN git clone --filter=tree:0 "${CONTAINERD_FUSE_OVERLAYFS_CLONE_URL}" /fuse-overlayfs-snapshotter \ RUN git clone --filter=tree:0 "${CONTAINERD_FUSE_OVERLAYFS_CLONE_URL}" /fuse-overlayfs-snapshotter \
&& cd /fuse-overlayfs-snapshotter \ && cd /fuse-overlayfs-snapshotter \