2013-06-21 22:42:17 -04:00
|
|
|
# This file describes the standard way to build Docker, using docker
|
2013-09-06 22:58:05 -04:00
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
#
|
2018-02-14 06:03:52 -05:00
|
|
|
# # Use make to build a development environment image and run it in a container.
|
|
|
|
# # This is slow the first time.
|
|
|
|
# make BIND_DIR=. shell
|
2013-09-06 22:58:05 -04:00
|
|
|
#
|
2018-02-14 06:03:52 -05:00
|
|
|
# The following commands are executed inside the running container.
|
|
|
|
|
|
|
|
# # Make a dockerd binary.
|
|
|
|
# # hack/make.sh binary
|
2013-09-06 23:16:13 -04:00
|
|
|
#
|
2018-02-14 06:03:52 -05:00
|
|
|
# # Install dockerd to /usr/local/bin
|
|
|
|
# # make install
|
|
|
|
#
|
|
|
|
# # Run unit tests
|
|
|
|
# # hack/test/unit
|
|
|
|
#
|
|
|
|
# # Run tests e.g. integration, py
|
|
|
|
# # hack/make.sh binary test-integration test-docker-py
|
2013-09-06 22:58:05 -04:00
|
|
|
#
|
2015-06-13 12:21:50 -04:00
|
|
|
# Note: AppArmor used to mess with privileged mode, but this is no longer
|
2013-10-31 17:58:43 -04:00
|
|
|
# the case. Therefore, you don't have to disable it anymore.
|
|
|
|
#
|
2013-09-06 22:58:05 -04:00
|
|
|
|
2018-12-19 03:45:10 -05:00
|
|
|
FROM golang:1.11.4 AS base
|
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
|
|
|
|
|
2017-09-29 17:09:14 -04:00
|
|
|
FROM base AS criu
|
2016-05-12 10:52:00 -04:00
|
|
|
# Install CRIU for checkpoint/restore support
|
2017-12-04 17:45:04 -05:00
|
|
|
ENV CRIU_VERSION 3.6
|
2018-08-08 11:45:00 -04:00
|
|
|
# Install dependency packages specific to criu
|
2018-03-12 23:18:09 -04:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2017-09-29 17:09:14 -04:00
|
|
|
libnet-dev \
|
|
|
|
libprotobuf-c0-dev \
|
|
|
|
libprotobuf-dev \
|
|
|
|
libnl-3-dev \
|
|
|
|
libcap-dev \
|
|
|
|
protobuf-compiler \
|
|
|
|
protobuf-c-compiler \
|
|
|
|
python-protobuf \
|
|
|
|
&& mkdir -p /usr/src/criu \
|
2017-12-04 18:51:08 -05:00
|
|
|
&& curl -sSL https://github.com/checkpoint-restore/criu/archive/v${CRIU_VERSION}.tar.gz | tar -C /usr/src/criu/ -xz --strip-components=1 \
|
2016-05-12 10:52:00 -04:00
|
|
|
&& cd /usr/src/criu \
|
|
|
|
&& make \
|
2018-04-13 14:45:57 -04:00
|
|
|
&& make PREFIX=/build/ install-criu
|
2017-09-29 17:09:14 -04:00
|
|
|
|
2018-02-27 03:20:55 -05:00
|
|
|
FROM base AS registry
|
2015-12-18 18:06:23 -05:00
|
|
|
# Install two versions of the registry. The first is an older version that
|
|
|
|
# only supports schema1 manifests. The second is a newer version that supports
|
|
|
|
# both. This allows integration-cli tests to cover push/pull with both schema1
|
|
|
|
# and schema2 manifests.
|
|
|
|
ENV REGISTRY_COMMIT_SCHEMA1 ec87e9b6971d831f0eff752ddb54fb64693e51cd
|
2016-01-19 16:28:51 -05:00
|
|
|
ENV REGISTRY_COMMIT 47a064d4195a9b56133891bbb13620c3ac83a827
|
2015-01-20 22:40:19 -05:00
|
|
|
RUN set -x \
|
2015-06-05 18:20:04 -04:00
|
|
|
&& export GOPATH="$(mktemp -d)" \
|
|
|
|
&& git clone https://github.com/docker/distribution.git "$GOPATH/src/github.com/docker/distribution" \
|
|
|
|
&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT") \
|
|
|
|
&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
|
2018-04-13 14:45:57 -04:00
|
|
|
go build -buildmode=pie -o /build/registry-v2 github.com/docker/distribution/cmd/registry \
|
2018-03-23 02:01:48 -04:00
|
|
|
&& case $(dpkg --print-architecture) in \
|
|
|
|
amd64|ppc64*|s390x) \
|
2018-03-09 01:09:59 -05:00
|
|
|
(cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT_SCHEMA1"); \
|
|
|
|
GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH"; \
|
2018-04-13 14:45:57 -04:00
|
|
|
go build -buildmode=pie -o /build/registry-v2-schema1 github.com/docker/distribution/cmd/registry; \
|
2018-03-09 01:09:59 -05:00
|
|
|
;; \
|
|
|
|
esac \
|
2015-06-05 18:20:04 -04:00
|
|
|
&& rm -rf "$GOPATH"
|
2015-01-20 22:40:19 -05:00
|
|
|
|
2017-09-29 17:09:14 -04:00
|
|
|
|
|
|
|
|
|
|
|
FROM base AS docker-py
|
2014-12-19 02:20:59 -05:00
|
|
|
# Get the "docker-py" source so we can run their integration tests
|
2018-02-23 17:24:47 -05:00
|
|
|
ENV DOCKER_PY_COMMIT 8b246db271a85d6541dc458838627e89c683e42f
|
2018-04-13 14:45:57 -04:00
|
|
|
RUN git clone https://github.com/docker/docker-py.git /build \
|
|
|
|
&& cd /build \
|
2017-09-29 17:09:14 -04:00
|
|
|
&& git checkout -q $DOCKER_PY_COMMIT
|
2014-12-19 02:20:59 -05:00
|
|
|
|
2016-11-03 13:15:27 -04:00
|
|
|
|
2017-09-29 17:09:14 -04:00
|
|
|
|
2018-02-27 03:20:55 -05:00
|
|
|
FROM base AS swagger
|
2016-11-03 13:15:27 -04:00
|
|
|
# Install go-swagger for validating swagger.yaml
|
|
|
|
ENV GO_SWAGGER_COMMIT c28258affb0b6251755d92489ef685af8d4ff3eb
|
2017-12-08 17:02:32 -05:00
|
|
|
RUN set -x \
|
|
|
|
&& export GOPATH="$(mktemp -d)" \
|
|
|
|
&& git clone https://github.com/go-swagger/go-swagger.git "$GOPATH/src/github.com/go-swagger/go-swagger" \
|
|
|
|
&& (cd "$GOPATH/src/github.com/go-swagger/go-swagger" && git checkout -q "$GO_SWAGGER_COMMIT") \
|
2018-04-13 14:45:57 -04:00
|
|
|
&& go build -o /build/swagger github.com/go-swagger/go-swagger/cmd/swagger \
|
2017-12-08 17:02:32 -05:00
|
|
|
&& rm -rf "$GOPATH"
|
2016-11-03 13:15:27 -04:00
|
|
|
|
2015-03-02 12:33:26 -05:00
|
|
|
|
2018-02-27 03:20:55 -05:00
|
|
|
FROM base AS frozen-images
|
2017-09-29 17:09:14 -04:00
|
|
|
RUN apt-get update && apt-get install -y jq ca-certificates --no-install-recommends
|
2015-03-06 20:12:41 -05:00
|
|
|
# Get useful and necessary Hub images so we can "docker load" locally instead of pulling
|
2017-09-29 17:09:14 -04:00
|
|
|
COPY contrib/download-frozen-image-v2.sh /
|
2018-04-13 14:45:57 -04:00
|
|
|
RUN /download-frozen-image-v2.sh /build \
|
2018-01-04 21:58:14 -05:00
|
|
|
buildpack-deps:jessie@sha256:dd86dced7c9cd2a724e779730f0a53f93b7ef42228d4344b25ce9a42a1486251 \
|
2018-02-27 01:28:29 -05:00
|
|
|
busybox:latest@sha256:bbc3a03235220b170ba48a157dd097dd1379299370e1ed99ce976df0355d24f0 \
|
|
|
|
busybox:glibc@sha256:0b55a30394294ab23b9afd58fab94e61a923f5834fba7ddbae7f8e0c11ba85e6 \
|
2018-01-04 21:58:14 -05:00
|
|
|
debian:jessie@sha256:287a20c5f73087ab406e6b364833e3fb7b3ae63ca0eb3486555dc27ed32c6e60 \
|
|
|
|
hello-world:latest@sha256:be0cd392e45be79ffeffa6b05338b98ebb16c87b255f48e297ec7f98e123905c
|
2016-12-31 14:11:30 -05:00
|
|
|
# See also ensureFrozenImagesLinux() in "integration-cli/fixtures_linux_daemon_test.go" (which needs to be updated when adding images to this list)
|
2015-02-28 00:53:36 -05:00
|
|
|
|
2017-09-29 17:09:14 -04:00
|
|
|
# Just a little hack so we don't have to install these deps twice, once for runc and once for dockerd
|
2018-02-27 03:20:55 -05:00
|
|
|
FROM base AS runtime-dev
|
2017-09-29 17:09:14 -04:00
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
libapparmor-dev \
|
|
|
|
libseccomp-dev
|
|
|
|
|
|
|
|
|
2018-02-27 03:20:55 -05:00
|
|
|
FROM base AS tomlv
|
2017-09-29 17:09:14 -04:00
|
|
|
ENV INSTALL_BINARY_NAME=tomlv
|
|
|
|
COPY hack/dockerfile/install/install.sh ./install.sh
|
|
|
|
COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
|
2018-04-13 14:45:57 -04:00
|
|
|
RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME
|
2017-09-29 17:09:14 -04:00
|
|
|
|
2018-02-27 03:20:55 -05:00
|
|
|
FROM base AS vndr
|
2017-09-29 17:09:14 -04:00
|
|
|
ENV INSTALL_BINARY_NAME=vndr
|
|
|
|
COPY hack/dockerfile/install/install.sh ./install.sh
|
|
|
|
COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
|
2018-04-13 14:45:57 -04:00
|
|
|
RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME
|
2017-09-29 17:09:14 -04:00
|
|
|
|
2018-02-27 03:20:55 -05:00
|
|
|
FROM base AS containerd
|
2017-09-29 17:09:14 -04:00
|
|
|
RUN apt-get update && apt-get install -y btrfs-tools
|
|
|
|
ENV INSTALL_BINARY_NAME=containerd
|
|
|
|
COPY hack/dockerfile/install/install.sh ./install.sh
|
|
|
|
COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
|
2018-04-13 14:45:57 -04:00
|
|
|
RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME
|
2017-09-29 17:09:14 -04:00
|
|
|
|
2018-02-27 03:20:55 -05:00
|
|
|
FROM base AS proxy
|
2017-09-29 17:09:14 -04:00
|
|
|
ENV INSTALL_BINARY_NAME=proxy
|
|
|
|
COPY hack/dockerfile/install/install.sh ./install.sh
|
|
|
|
COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
|
2018-04-13 14:45:57 -04:00
|
|
|
RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME
|
2017-09-29 17:09:14 -04:00
|
|
|
|
2018-02-27 03:20:55 -05:00
|
|
|
FROM base AS gometalinter
|
2017-09-29 17:09:14 -04:00
|
|
|
ENV INSTALL_BINARY_NAME=gometalinter
|
|
|
|
COPY hack/dockerfile/install/install.sh ./install.sh
|
|
|
|
COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
|
2018-04-13 14:45:57 -04:00
|
|
|
RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME
|
2017-09-29 17:09:14 -04:00
|
|
|
|
2018-02-27 03:20:55 -05:00
|
|
|
FROM base AS dockercli
|
2017-09-29 17:09:14 -04:00
|
|
|
ENV INSTALL_BINARY_NAME=dockercli
|
|
|
|
COPY hack/dockerfile/install/install.sh ./install.sh
|
|
|
|
COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
|
2018-04-13 14:45:57 -04:00
|
|
|
RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME
|
2017-09-29 17:09:14 -04:00
|
|
|
|
|
|
|
FROM runtime-dev AS runc
|
|
|
|
ENV INSTALL_BINARY_NAME=runc
|
|
|
|
COPY hack/dockerfile/install/install.sh ./install.sh
|
|
|
|
COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
|
2018-04-13 14:45:57 -04:00
|
|
|
RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME
|
2017-09-29 17:09:14 -04:00
|
|
|
|
|
|
|
FROM base AS tini
|
|
|
|
RUN apt-get update && apt-get install -y cmake vim-common
|
|
|
|
COPY hack/dockerfile/install/install.sh ./install.sh
|
|
|
|
ENV INSTALL_BINARY_NAME=tini
|
|
|
|
COPY hack/dockerfile/install/$INSTALL_BINARY_NAME.installer ./
|
2018-04-13 14:45:57 -04:00
|
|
|
RUN PREFIX=/build/ ./install.sh $INSTALL_BINARY_NAME
|
2017-09-29 17:09:14 -04:00
|
|
|
|
2016-06-27 17:38:47 -04:00
|
|
|
|
2017-09-29 17:09:14 -04:00
|
|
|
|
|
|
|
# TODO: Some of this is only really needed for testing, it would be nice to split this up
|
|
|
|
FROM runtime-dev AS dev
|
|
|
|
RUN groupadd -r docker
|
|
|
|
RUN useradd --create-home --gid docker unprivilegeduser
|
2018-06-29 06:39:36 -04:00
|
|
|
# Let us use a .bashrc file
|
|
|
|
RUN ln -sfv /go/src/github.com/docker/docker/.bashrc ~/.bashrc
|
2017-06-24 17:51:06 -04:00
|
|
|
# Activate bash completion and include Docker's completion if mounted with DOCKER_BASH_COMPLETION_PATH
|
|
|
|
RUN echo "source /usr/share/bash-completion/bash_completion" >> /etc/bash.bashrc
|
2017-06-23 12:05:38 -04:00
|
|
|
RUN ln -s /usr/local/completion/bash/docker /etc/bash_completion.d/docker
|
2017-09-29 17:09:14 -04:00
|
|
|
RUN ldconfig
|
|
|
|
# This should only install packages that are specifically needed for the dev environment and nothing else
|
|
|
|
# Do you really need to add another package here? Can it be done in a different build stage?
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
apparmor \
|
|
|
|
aufs-tools \
|
|
|
|
bash-completion \
|
|
|
|
btrfs-tools \
|
|
|
|
iptables \
|
|
|
|
jq \
|
2018-11-29 02:14:35 -05:00
|
|
|
libcap2-bin \
|
2017-09-29 17:09:14 -04:00
|
|
|
libdevmapper-dev \
|
|
|
|
libudev-dev \
|
|
|
|
libsystemd-dev \
|
|
|
|
binutils-mingw-w64 \
|
2018-03-09 01:09:59 -05:00
|
|
|
g++-mingw-w64-x86-64 \
|
2017-09-29 17:09:14 -04:00
|
|
|
net-tools \
|
|
|
|
pigz \
|
|
|
|
python-backports.ssl-match-hostname \
|
|
|
|
python-dev \
|
|
|
|
python-mock \
|
|
|
|
python-pip \
|
|
|
|
python-requests \
|
|
|
|
python-setuptools \
|
|
|
|
python-websocket \
|
|
|
|
python-wheel \
|
|
|
|
thin-provisioning-tools \
|
|
|
|
vim \
|
|
|
|
vim-common \
|
|
|
|
xfsprogs \
|
|
|
|
zip \
|
2018-02-27 03:20:55 -05:00
|
|
|
bzip2 \
|
|
|
|
xz-utils \
|
2017-09-29 17:09:14 -04:00
|
|
|
--no-install-recommends
|
2018-04-13 14:45:57 -04:00
|
|
|
COPY --from=swagger /build/swagger* /usr/local/bin/
|
|
|
|
COPY --from=frozen-images /build/ /docker-frozen-images
|
|
|
|
COPY --from=gometalinter /build/ /usr/local/bin/
|
|
|
|
COPY --from=tomlv /build/ /usr/local/bin/
|
|
|
|
COPY --from=vndr /build/ /usr/local/bin/
|
|
|
|
COPY --from=tini /build/ /usr/local/bin/
|
|
|
|
COPY --from=runc /build/ /usr/local/bin/
|
|
|
|
COPY --from=containerd /build/ /usr/local/bin/
|
|
|
|
COPY --from=proxy /build/ /usr/local/bin/
|
|
|
|
COPY --from=dockercli /build/ /usr/local/cli
|
|
|
|
COPY --from=registry /build/registry* /usr/local/bin/
|
|
|
|
COPY --from=criu /build/ /usr/local/
|
|
|
|
COPY --from=docker-py /build/ /docker-py
|
2017-09-29 17:09:14 -04:00
|
|
|
# TODO: This is for the docker-py tests, which shouldn't really be needed for
|
|
|
|
# this image, but currently CI is expecting to run this image. This should be
|
|
|
|
# split out into a separate image, including all the `python-*` deps installed
|
|
|
|
# above.
|
|
|
|
RUN cd /docker-py \
|
|
|
|
&& pip install docker-pycreds==0.2.1 \
|
2018-03-29 19:43:31 -04:00
|
|
|
&& pip install yamllint==1.5.0 \
|
2017-09-29 17:09:14 -04:00
|
|
|
&& pip install -r test-requirements.txt
|
2017-06-23 12:05:38 -04:00
|
|
|
|
2017-09-29 17:09:14 -04:00
|
|
|
ENV PATH=/usr/local/cli:$PATH
|
|
|
|
ENV DOCKER_BUILDTAGS apparmor seccomp selinux
|
2017-11-09 15:45:11 -05:00
|
|
|
# Options for hack/validate/gometalinter
|
2018-01-16 17:33:06 -05:00
|
|
|
ENV GOMETALINTER_OPTS="--deadline=2m"
|
2017-09-29 17:09:14 -04:00
|
|
|
WORKDIR /go/src/github.com/docker/docker
|
|
|
|
VOLUME /var/lib/docker
|
|
|
|
# Wrap all commands in the "docker-in-docker" script to allow nested containers
|
|
|
|
ENTRYPOINT ["hack/dind"]
|
2013-09-06 23:14:03 -04:00
|
|
|
# Upload docker source
|
2014-12-24 02:12:27 -05:00
|
|
|
COPY . /go/src/github.com/docker/docker
|