Bump packages to new alpine w/ containerd v1.1.0-rc.2

Since we are building containerd v1.1.0 with go 1.10 (as it requires) to the
same for init and runc too for consistency. In the case of init it is actually
required since we use the containerd client library there.

The subreaper interfaces have been removed from containerd and replaced with a
similar interface in runc/libcontainer, update init to use that now.

Signed-off-by: Ian Campbell <ijc@docker.com>
This commit is contained in:
Ian Campbell
2018-04-17 16:30:31 +01:00
parent 6a4d0df63c
commit e8e28c27e9
5 changed files with 14 additions and 9 deletions

View File

@@ -1,10 +1,12 @@
FROM linuxkit/alpine:f3cd219615428b2bd943411723eb28875275fae7 as alpine
FROM linuxkit/alpine:02d7e748614512ea099e8c76254e41bcea03ba8f as alpine
# containerd v1.1.x requires go1.10 which is currently a separate package in Alpine 3.7
# Use the same version of go for consistency.
RUN \
apk add \
bash \
gcc \
git \
go \
go1.10 \
libc-dev \
libseccomp-dev \
linux-headers \