From 5124698b477dbf91fea9b450211e3ac4583233b1 Mon Sep 17 00:00:00 2001 From: David Scott Date: Wed, 2 Jun 2021 14:15:45 +0100 Subject: [PATCH] alpine: update containerd to 1.4.6 As suggested on https://github.com/linuxkit/linuxkit/pull/3554#issuecomment-852910630 Signed-off-by: David Scott --- tools/alpine/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/alpine/Dockerfile b/tools/alpine/Dockerfile index 620bd2cce..cfa144a7e 100644 --- a/tools/alpine/Dockerfile +++ b/tools/alpine/Dockerfile @@ -61,7 +61,7 @@ RUN go get -u github.com/LK4D4/vndr # when building, note that containerd does not use go modules in the below commit, # while go1.16 defaults to using it, so must disable with GO111MODULE=off ENV CONTAINERD_REPO=https://github.com/containerd/containerd.git -ENV CONTAINERD_COMMIT=v1.4.4 +ENV CONTAINERD_COMMIT=v1.4.6 RUN mkdir -p $GOPATH/src/github.com/containerd && \ cd $GOPATH/src/github.com/containerd && \ git clone https://github.com/containerd/containerd.git && \