2013-06-22 02:42:17 +00:00
|
|
|
# This file describes the standard way to build Docker, using docker
|
2013-09-07 02:58:05 +00:00
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
#
|
|
|
|
# # Assemble the full dev environment. This is slow the first time.
|
|
|
|
# docker build -t docker .
|
|
|
|
#
|
2013-09-07 03:16:13 +00:00
|
|
|
# # Mount your source in an interactive container for quick testing:
|
2014-07-24 22:19:50 +00:00
|
|
|
# docker run -v `pwd`:/go/src/github.com/docker/docker --privileged -i -t docker bash
|
2013-09-07 03:16:13 +00:00
|
|
|
#
|
2013-09-07 02:58:05 +00:00
|
|
|
# # Run the test suite:
|
2014-03-13 17:46:02 +00:00
|
|
|
# docker run --privileged docker hack/make.sh test
|
2013-09-07 02:58:05 +00:00
|
|
|
#
|
|
|
|
# # Publish a release:
|
2014-03-13 17:46:02 +00:00
|
|
|
# docker run --privileged \
|
2013-09-30 19:57:30 +00:00
|
|
|
# -e AWS_S3_BUCKET=baz \
|
|
|
|
# -e AWS_ACCESS_KEY=foo \
|
|
|
|
# -e AWS_SECRET_KEY=bar \
|
|
|
|
# -e GPG_PASSPHRASE=gloubiboulga \
|
|
|
|
# docker hack/release.sh
|
|
|
|
#
|
2013-10-31 21:58:43 +00:00
|
|
|
# Note: Apparmor used to mess with privileged mode, but this is no longer
|
|
|
|
# the case. Therefore, you don't have to disable it anymore.
|
|
|
|
#
|
2013-09-07 02:58:05 +00:00
|
|
|
|
2014-12-24 07:12:27 +00:00
|
|
|
FROM ubuntu:14.04
|
|
|
|
MAINTAINER Tianon Gravi <admwiggin@gmail.com> (@tianon)
|
2013-09-30 19:57:30 +00:00
|
|
|
|
2013-12-25 03:40:41 +00:00
|
|
|
# Packaged dependencies
|
2014-12-24 07:12:27 +00:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2015-01-10 02:22:19 +00:00
|
|
|
apparmor \
|
2013-12-25 03:40:41 +00:00
|
|
|
aufs-tools \
|
2014-01-27 22:34:46 +00:00
|
|
|
automake \
|
2014-02-02 04:40:51 +00:00
|
|
|
btrfs-tools \
|
2013-12-25 03:40:41 +00:00
|
|
|
build-essential \
|
|
|
|
curl \
|
|
|
|
dpkg-sig \
|
|
|
|
git \
|
|
|
|
iptables \
|
2014-01-27 22:34:46 +00:00
|
|
|
libapparmor-dev \
|
|
|
|
libcap-dev \
|
2013-12-25 03:40:41 +00:00
|
|
|
libsqlite3-dev \
|
|
|
|
mercurial \
|
2014-07-09 21:21:39 +00:00
|
|
|
parallel \
|
2014-12-15 19:44:15 +00:00
|
|
|
python-mock \
|
|
|
|
python-pip \
|
2014-12-19 07:20:59 +00:00
|
|
|
python-websocket \
|
2013-12-25 03:40:41 +00:00
|
|
|
reprepro \
|
|
|
|
ruby1.9.1 \
|
|
|
|
ruby1.9.1-dev \
|
|
|
|
s3cmd=1.1.0* \
|
|
|
|
--no-install-recommends
|
|
|
|
|
|
|
|
# Get lvm2 source for compiling statically
|
2014-12-24 07:12:27 +00:00
|
|
|
RUN git clone -b v2_02_103 https://git.fedorahosted.org/git/lvm2.git /usr/local/lvm2
|
2013-12-25 03:40:41 +00:00
|
|
|
# see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
|
|
|
|
|
|
|
|
# Compile and install lvm2
|
2014-12-24 07:12:27 +00:00
|
|
|
RUN cd /usr/local/lvm2 \
|
|
|
|
&& ./configure --enable-static_link \
|
|
|
|
&& make device-mapper \
|
|
|
|
&& make install_device-mapper
|
2013-12-25 03:40:41 +00:00
|
|
|
# see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
|
2013-09-30 19:57:30 +00:00
|
|
|
|
2015-01-07 07:10:05 +00:00
|
|
|
# Install lxc
|
2015-01-09 06:07:15 +00:00
|
|
|
ENV LXC_VERSION 1.0.7
|
2015-01-07 07:10:05 +00:00
|
|
|
RUN mkdir -p /usr/src/lxc \
|
2015-01-09 06:07:15 +00:00
|
|
|
&& curl -sSL https://linuxcontainers.org/downloads/lxc/lxc-${LXC_VERSION}.tar.gz | tar -v -C /usr/src/lxc/ -xz --strip-components=1
|
2015-01-07 07:10:05 +00:00
|
|
|
RUN cd /usr/src/lxc \
|
|
|
|
&& ./configure \
|
|
|
|
&& make \
|
|
|
|
&& make install \
|
|
|
|
&& ldconfig
|
|
|
|
|
2013-10-05 02:25:15 +00:00
|
|
|
# Install Go
|
2015-02-18 13:07:17 +00:00
|
|
|
ENV GO_VERSION 1.4.2
|
2015-01-09 06:07:15 +00:00
|
|
|
RUN curl -sSL https://golang.org/dl/go${GO_VERSION}.src.tar.gz | tar -v -C /usr/local -xz \
|
|
|
|
&& mkdir -p /go/bin
|
|
|
|
ENV PATH /go/bin:/usr/local/go/bin:$PATH
|
2014-12-24 07:12:27 +00:00
|
|
|
ENV GOPATH /go:/go/src/github.com/docker/docker/vendor
|
|
|
|
RUN cd /usr/local/go/src && ./make.bash --no-clean 2>&1
|
2013-12-19 06:06:14 +00:00
|
|
|
|
2013-12-25 03:40:41 +00:00
|
|
|
# Compile Go for cross compilation
|
2014-12-24 07:12:27 +00:00
|
|
|
ENV DOCKER_CROSSPLATFORMS \
|
2014-04-08 15:42:47 +00:00
|
|
|
linux/386 linux/arm \
|
|
|
|
darwin/amd64 darwin/386 \
|
2015-02-09 22:19:08 +00:00
|
|
|
freebsd/amd64 freebsd/386 freebsd/arm \
|
|
|
|
windows/amd64 windows/386
|
2014-11-26 18:46:00 +00:00
|
|
|
|
2014-01-31 10:16:42 +00:00
|
|
|
# (set an explicit GOARM of 5 for maximum compatibility)
|
2014-12-24 07:12:27 +00:00
|
|
|
ENV GOARM 5
|
|
|
|
RUN cd /usr/local/go/src \
|
|
|
|
&& set -x \
|
|
|
|
&& for platform in $DOCKER_CROSSPLATFORMS; do \
|
|
|
|
GOOS=${platform%/*} \
|
|
|
|
GOARCH=${platform##*/} \
|
|
|
|
./make.bash --no-clean 2>&1; \
|
|
|
|
done
|
2013-09-30 19:57:30 +00:00
|
|
|
|
2015-01-09 06:09:06 +00:00
|
|
|
# We still support compiling with older Go, so need to grab older "gofmt"
|
|
|
|
ENV GOFMT_VERSION 1.3.3
|
|
|
|
RUN curl -sSL https://storage.googleapis.com/golang/go${GOFMT_VERSION}.$(go env GOOS)-$(go env GOARCH).tar.gz | tar -C /go/bin -xz --strip-components=2 go/bin/gofmt
|
|
|
|
|
2013-12-09 03:20:55 +00:00
|
|
|
# Grab Go's cover tool for dead-simple code coverage testing
|
2014-12-24 07:12:27 +00:00
|
|
|
RUN go get golang.org/x/tools/cmd/cover
|
2013-12-09 03:20:55 +00:00
|
|
|
|
2013-12-25 03:40:41 +00:00
|
|
|
# TODO replace FPM with some very minimal debhelper stuff
|
2014-12-24 07:12:27 +00:00
|
|
|
RUN gem install --no-rdoc --no-ri fpm --version 1.3.2
|
2014-08-05 00:59:37 +00:00
|
|
|
|
2015-01-21 03:40:19 +00:00
|
|
|
# Install registry
|
|
|
|
ENV REGISTRY_COMMIT c448e0416925a9876d5576e412703c9b8b865e19
|
|
|
|
RUN set -x \
|
|
|
|
&& git clone https://github.com/docker/distribution.git /go/src/github.com/docker/distribution \
|
|
|
|
&& (cd /go/src/github.com/docker/distribution && git checkout -q $REGISTRY_COMMIT) \
|
|
|
|
&& GOPATH=/go/src/github.com/docker/distribution/Godeps/_workspace:/go \
|
|
|
|
go build -o /go/bin/registry-v2 github.com/docker/distribution/cmd/registry
|
|
|
|
|
2014-12-19 07:20:59 +00:00
|
|
|
# Get the "docker-py" source so we can run their integration tests
|
2015-02-25 04:19:49 +00:00
|
|
|
ENV DOCKER_PY_COMMIT 91985b239764fe54714fa0a93d52aa362357d251
|
2015-01-13 19:34:55 +00:00
|
|
|
RUN git clone https://github.com/docker/docker-py.git /docker-py \
|
|
|
|
&& cd /docker-py \
|
|
|
|
&& git checkout -q $DOCKER_PY_COMMIT
|
2014-12-19 07:20:59 +00:00
|
|
|
|
2013-12-25 03:40:41 +00:00
|
|
|
# Setup s3cmd config
|
2014-12-24 07:12:27 +00:00
|
|
|
RUN { \
|
|
|
|
echo '[default]'; \
|
|
|
|
echo 'access_key=$AWS_ACCESS_KEY'; \
|
|
|
|
echo 'secret_key=$AWS_SECRET_KEY'; \
|
|
|
|
} > ~/.s3cfg
|
2013-12-25 03:40:41 +00:00
|
|
|
|
2014-01-29 20:13:32 +00:00
|
|
|
# Set user.email so crosbymichael's in-container merge commits go smoothly
|
2014-12-24 07:12:27 +00:00
|
|
|
RUN git config --global user.email 'docker-dummy@example.com'
|
2014-01-29 20:13:32 +00:00
|
|
|
|
2014-05-19 20:55:28 +00:00
|
|
|
# Add an unprivileged user to be used for tests which need it
|
2014-05-23 20:29:31 +00:00
|
|
|
RUN groupadd -r docker
|
|
|
|
RUN useradd --create-home --gid docker unprivilegeduser
|
2014-05-19 20:55:28 +00:00
|
|
|
|
2014-12-24 07:12:27 +00:00
|
|
|
VOLUME /var/lib/docker
|
|
|
|
WORKDIR /go/src/github.com/docker/docker
|
|
|
|
ENV DOCKER_BUILDTAGS apparmor selinux btrfs_noversion
|
|
|
|
|
2015-03-02 17:33:26 +00:00
|
|
|
# Let us use a .bashrc file
|
|
|
|
RUN ln -sfv $PWD/.bashrc ~/.bashrc
|
|
|
|
|
2015-02-28 05:53:36 +00:00
|
|
|
# Get the "busybox" image so we can "docker load" locally instead of pulling
|
|
|
|
COPY contrib/download-frozen-image.sh /go/src/github.com/docker/docker/contrib/
|
|
|
|
RUN ./contrib/download-frozen-image.sh /docker-busybox busybox@4986bf8c15363d1c5d15512d5266f8777bfba4974ac56e3270e7760f6f0a8125
|
|
|
|
|
2014-12-24 07:12:27 +00:00
|
|
|
# Install man page generator
|
|
|
|
COPY vendor /go/src/github.com/docker/docker/vendor
|
|
|
|
# (copy vendor/ because go-md2man needs golang.org/x/net)
|
|
|
|
RUN set -x \
|
2015-01-27 14:33:42 +00:00
|
|
|
&& git clone -b v1.0.1 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \
|
2014-12-24 07:12:27 +00:00
|
|
|
&& git clone -b v1.2 https://github.com/russross/blackfriday.git /go/src/github.com/russross/blackfriday \
|
|
|
|
&& go install -v github.com/cpuguy83/go-md2man
|
2013-09-30 19:57:30 +00:00
|
|
|
|
2015-01-30 19:45:02 +00:00
|
|
|
# install toml validator
|
2015-02-18 07:57:44 +00:00
|
|
|
ENV TOMLV_COMMIT 9baf8a8a9f2ed20a8e54160840c492f937eeaf9a
|
|
|
|
RUN set -x \
|
|
|
|
&& git clone https://github.com/BurntSushi/toml.git /go/src/github.com/BurntSushi/toml \
|
|
|
|
&& (cd /go/src/github.com/BurntSushi/toml && git checkout -q $TOMLV_COMMIT) \
|
|
|
|
&& go install -v github.com/BurntSushi/toml/cmd/tomlv
|
2015-01-30 19:45:02 +00:00
|
|
|
|
2013-09-07 02:19:03 +00:00
|
|
|
# Wrap all commands in the "docker-in-docker" script to allow nested containers
|
2014-12-24 07:12:27 +00:00
|
|
|
ENTRYPOINT ["hack/dind"]
|
2013-09-30 19:57:30 +00:00
|
|
|
|
2013-09-07 03:14:03 +00:00
|
|
|
# Upload docker source
|
2014-12-24 07:12:27 +00:00
|
|
|
COPY . /go/src/github.com/docker/docker
|