
Note that this is the code in containerd that uses runc (as almost a library). Please see the other commit for the update to runc binary itself. Signed-off-by: Davanum Srinivas <davanum@gmail.com>
61 lines
1.6 KiB
Docker
61 lines
1.6 KiB
Docker
# This dockerfile is used to test containerd within a container
|
|
#
|
|
# usage:
|
|
# 1.) docker build -t containerd-test -f Dockerfile.test ../
|
|
# 2.) docker run -it --privileged -v /tmp:/tmp --tmpfs /var/lib/containerd-test containerd-test bash
|
|
# 3.) $ make binaries install test
|
|
#
|
|
# Use the RUNC_VERSION build-arg to build with a custom version of runc, for example,
|
|
# to build runc v1.0.0-rc94, use:
|
|
#
|
|
# docker build -t containerd-test --build-arg RUNC_VERSION=v1.0.0-rc94 -f Dockerfile.test ../
|
|
|
|
ARG GOLANG_VERSION=1.16.4
|
|
|
|
FROM golang:${GOLANG_VERSION} AS golang-base
|
|
RUN mkdir -p /go/src/github.com/containerd/containerd
|
|
WORKDIR /go/src/github.com/containerd/containerd
|
|
|
|
# Install proto3
|
|
FROM golang-base AS proto3
|
|
RUN apt-get update && apt-get install -y \
|
|
autoconf \
|
|
automake \
|
|
g++ \
|
|
libtool \
|
|
unzip \
|
|
--no-install-recommends
|
|
|
|
COPY script/setup/install-protobuf install-protobuf
|
|
RUN ./install-protobuf
|
|
|
|
# Install runc
|
|
FROM golang-base AS runc
|
|
RUN apt-get update && apt-get install -y \
|
|
curl \
|
|
libseccomp-dev \
|
|
--no-install-recommends
|
|
|
|
COPY script/setup/runc-version script/setup/install-runc ./
|
|
# Allow overriding the version of runc to install through build-args
|
|
ARG RUNC_VERSION
|
|
ARG GOPROXY=direct
|
|
RUN ./install-runc
|
|
|
|
FROM golang-base AS dev
|
|
RUN apt-get update && apt-get install -y \
|
|
libbtrfs-dev \
|
|
btrfs-progs \
|
|
gcc \
|
|
git \
|
|
libseccomp-dev \
|
|
make \
|
|
xfsprogs \
|
|
--no-install-recommends
|
|
|
|
COPY --from=proto3 /usr/local/bin/protoc /usr/local/bin/protoc
|
|
COPY --from=proto3 /usr/local/include/google /usr/local/include/google
|
|
COPY --from=runc /usr/local/sbin/runc /usr/local/go/bin/runc
|
|
|
|
COPY . .
|