2015-02-28 00:37:25 -05:00
|
|
|
# docker build -t docker:simple -f Dockerfile.simple .
|
|
|
|
# docker run --rm docker:simple hack/make.sh dynbinary
|
2015-03-09 20:24:49 -04:00
|
|
|
# docker run --rm --privileged docker:simple hack/dind hack/make.sh test-unit
|
|
|
|
# docker run --rm --privileged -v /var/lib/docker docker:simple hack/dind hack/make.sh dynbinary test-integration-cli
|
2015-02-28 00:37:25 -05:00
|
|
|
|
|
|
|
# This represents the bare minimum required to build and test Docker.
|
|
|
|
|
|
|
|
FROM debian:jessie
|
|
|
|
|
2016-11-20 17:14:51 -05:00
|
|
|
# allow replacing httpredir or deb mirror
|
|
|
|
ARG APT_MIRROR=deb.debian.org
|
|
|
|
RUN sed -ri "s/(httpredir|deb).debian.org/$APT_MIRROR/g" /etc/apt/sources.list
|
|
|
|
|
2016-09-21 22:15:18 -04:00
|
|
|
# Compile and runtime deps
|
2015-02-28 00:37:25 -05:00
|
|
|
# https://github.com/docker/docker/blob/master/project/PACKAGERS.md#build-dependencies
|
|
|
|
# https://github.com/docker/docker/blob/master/project/PACKAGERS.md#runtime-dependencies
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
btrfs-tools \
|
2016-03-25 00:19:13 -04:00
|
|
|
build-essential \
|
2015-03-18 01:08:17 -04:00
|
|
|
curl \
|
2016-11-03 12:47:50 -04:00
|
|
|
cmake \
|
2015-02-28 00:37:25 -05:00
|
|
|
gcc \
|
|
|
|
git \
|
2016-03-25 00:19:13 -04:00
|
|
|
libapparmor-dev \
|
2015-02-28 00:37:25 -05:00
|
|
|
libdevmapper-dev \
|
|
|
|
ca-certificates \
|
|
|
|
e2fsprogs \
|
|
|
|
iptables \
|
|
|
|
procps \
|
2015-11-11 17:29:02 -05:00
|
|
|
xfsprogs \
|
2015-02-28 00:37:25 -05:00
|
|
|
xz-utils \
|
|
|
|
\
|
2015-03-09 20:24:49 -04:00
|
|
|
aufs-tools \
|
2016-11-03 12:47:50 -04:00
|
|
|
vim-common \
|
2015-02-28 00:37:25 -05:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2017-03-07 17:19:46 -05:00
|
|
|
# Install seccomp: the version shipped upstream is too old
|
|
|
|
ENV SECCOMP_VERSION 2.3.2
|
2016-03-25 00:19:13 -04:00
|
|
|
RUN set -x \
|
|
|
|
&& export SECCOMP_PATH="$(mktemp -d)" \
|
|
|
|
&& curl -fsSL "https://github.com/seccomp/libseccomp/releases/download/v${SECCOMP_VERSION}/libseccomp-${SECCOMP_VERSION}.tar.gz" \
|
|
|
|
| tar -xzC "$SECCOMP_PATH" --strip-components=1 \
|
|
|
|
&& ( \
|
|
|
|
cd "$SECCOMP_PATH" \
|
|
|
|
&& ./configure --prefix=/usr/local \
|
|
|
|
&& make \
|
|
|
|
&& make install \
|
|
|
|
&& ldconfig \
|
|
|
|
) \
|
|
|
|
&& rm -rf "$SECCOMP_PATH"
|
|
|
|
|
|
|
|
# Install Go
|
|
|
|
# IMPORTANT: If the version of Go is updated, the Windows to Linux CI machines
|
|
|
|
# will need updating, to avoid errors. Ping #docker-maintainers on IRC
|
|
|
|
# with a heads-up.
|
2017-01-26 19:14:36 -05:00
|
|
|
ENV GO_VERSION 1.7.5
|
2016-11-04 10:03:41 -04:00
|
|
|
RUN curl -fsSL "https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz" \
|
2016-03-25 00:19:13 -04:00
|
|
|
| tar -xzC /usr/local
|
|
|
|
ENV PATH /go/bin:/usr/local/go/bin:$PATH
|
2016-10-31 14:22:28 -04:00
|
|
|
ENV GOPATH /go
|
2016-03-25 00:19:13 -04:00
|
|
|
ENV CGO_LDFLAGS -L/lib
|
|
|
|
|
2016-11-03 12:47:50 -04:00
|
|
|
# Install runc, containerd, tini and docker-proxy
|
2016-09-23 12:20:57 -04:00
|
|
|
# Please edit hack/dockerfile/install-binaries.sh to update them.
|
2016-10-24 18:18:58 -04:00
|
|
|
COPY hack/dockerfile/binaries-commits /tmp/binaries-commits
|
2016-09-23 12:20:57 -04:00
|
|
|
COPY hack/dockerfile/install-binaries.sh /tmp/install-binaries.sh
|
2016-11-03 12:47:50 -04:00
|
|
|
RUN /tmp/install-binaries.sh runc containerd tini proxy
|
2016-06-27 17:38:47 -04:00
|
|
|
|
2015-02-28 00:37:25 -05:00
|
|
|
ENV AUTO_GOPATH 1
|
|
|
|
WORKDIR /usr/src/docker
|
|
|
|
COPY . /usr/src/docker
|