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:
#
# # Assemble the full dev environment. This is slow the first time.
# docker build -t docker .
#
2013-09-06 23:16:13 -04:00
# # Mount your source in an interactive container for quick testing:
2014-07-24 18:19:50 -04:00
# docker run -v `pwd`:/go/src/github.com/docker/docker --privileged -i -t docker bash
2013-09-06 23:16:13 -04:00
#
2013-09-06 22:58:05 -04:00
# # Run the test suite:
2014-03-13 13:46:02 -04:00
# docker run --privileged docker hack/make.sh test
2013-09-06 22:58:05 -04:00
#
# # Publish a release:
2014-03-13 13:46:02 -04:00
# docker run --privileged \
2013-09-30 15:57:30 -04: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 17:58:43 -04: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-06 22:58:05 -04:00
2013-11-04 17:39:16 -05:00
docker-version 0.6.1
2014-05-09 06:36:58 -04:00
FROM ubuntu:14.04
2013-12-24 22:40:41 -05:00
MAINTAINER Tianon Gravi <admwiggin@gmail.com> (@tianon)
2013-09-30 15:57:30 -04:00
2013-12-24 22:40:41 -05:00
# Packaged dependencies
2014-07-07 14:06:34 -04:00
RUN apt-get update && apt-get install -y \
2013-12-24 22:40:41 -05:00
aufs-tools \
2014-01-27 17:34:46 -05:00
automake \
2014-02-01 23:40:51 -05:00
btrfs-tools \
2013-12-24 22:40:41 -05:00
build-essential \
curl \
dpkg-sig \
git \
iptables \
2014-01-27 17:34:46 -05:00
libapparmor-dev \
libcap-dev \
2013-12-24 22:40:41 -05:00
libsqlite3-dev \
2014-05-20 15:05:57 -04:00
lxc = 1.0* \
2013-12-24 22:40:41 -05:00
mercurial \
2014-07-09 17:21:39 -04:00
parallel \
2013-12-24 22:40:41 -05:00
reprepro \
ruby1.9.1 \
ruby1.9.1-dev \
s3cmd = 1.1.0* \
--no-install-recommends
# Get lvm2 source for compiling statically
2014-01-27 17:34:46 -05:00
RUN git clone --no-checkout https://git.fedorahosted.org/git/lvm2.git /usr/local/lvm2 && cd /usr/local/lvm2 && git checkout -q v2_02_103
2013-12-24 22:40:41 -05:00
# see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
2014-01-27 17:34:46 -05:00
# note: we don't use "git clone -b" above because it then spews big nasty warnings about 'detached HEAD' state that we can't silence as easily as we can silence them using "git checkout" directly
2013-12-24 22:40:41 -05:00
# Compile and install lvm2
RUN cd /usr/local/lvm2 && ./configure --enable-static_link && make device-mapper && make install_device-mapper
# see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
2013-09-30 15:57:30 -04:00
2013-10-04 22:25:15 -04:00
# Install Go
2014-09-26 05:46:21 -04:00
RUN curl -sSL https://golang.org/dl/go1.3.2.src.tar.gz | tar -v -C /usr/local -xz
2013-12-24 22:40:41 -05:00
ENV PATH /usr/local/go/bin:$PATH
2014-07-24 18:19:50 -04:00
ENV GOPATH /go:/go/src/github.com/docker/docker/vendor
2014-08-04 20:59:37 -04:00
ENV PATH /go/bin:$PATH
2013-12-19 01:06:14 -05:00
RUN cd /usr/local/go/src && ./make.bash --no-clean 2>& 1
2013-12-24 22:40:41 -05:00
# Compile Go for cross compilation
2014-04-08 11:42:47 -04:00
ENV DOCKER_CROSSPLATFORMS \
linux/386 linux/arm \
darwin/amd64 darwin/386 \
freebsd/amd64 freebsd/386 freebsd/arm
2014-01-31 05:16:42 -05:00
# (set an explicit GOARM of 5 for maximum compatibility)
ENV GOARM 5
2013-12-19 01:06:14 -05:00
RUN cd /usr/local/go/src && bash -xc 'for platform in $DOCKER_CROSSPLATFORMS; do GOOS=${platform%/*} GOARCH=${platform##*/} ./make.bash --no-clean 2>&1; done'
2013-09-30 15:57:30 -04:00
2013-12-08 22:20:55 -05:00
# Grab Go's cover tool for dead-simple code coverage testing
RUN go get code.google.com/p/go.tools/cmd/cover
2013-12-24 22:40:41 -05:00
# TODO replace FPM with some very minimal debhelper stuff
2014-01-09 22:12:56 -05:00
RUN gem install --no-rdoc --no-ri fpm --version 1.0.2
2013-12-24 22:40:41 -05:00
2014-08-04 20:59:37 -04:00
# Install man page generator
RUN mkdir -p /go/src/github.com/cpuguy83 \
&& git clone -b v1 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \
&& cd /go/src/github.com/cpuguy83/go-md2man \
&& go get -v ./...
2014-04-14 15:35:54 -04:00
# Get the "busybox" image source so we can build locally instead of pulling
2014-05-23 16:28:32 -04:00
RUN git clone -b buildroot-2014.02 https://github.com/jpetazzo/docker-busybox.git /docker-busybox
2014-04-14 15:35:54 -04:00
2014-09-12 13:10:42 -04:00
# Get the "cirros" image source so we can import it instead of fetching it during tests
RUN curl -sSL -o /cirros.tar.gz https://github.com/ewindisch/docker-cirros/raw/1cded459668e8b9dbf4ef976c94c05add9bbd8e9/cirros-0.3.0-x86_64-lxc.tar.gz
2013-12-24 22:40:41 -05:00
# Setup s3cmd config
RUN /bin/echo -e '[default]\naccess_key=$AWS_ACCESS_KEY\nsecret_key=$AWS_SECRET_KEY' > /.s3cfg
2014-01-29 15:13:32 -05:00
# Set user.email so crosbymichael's in-container merge commits go smoothly
RUN git config --global user.email 'docker-dummy@example.com'
2014-05-19 16:55:28 -04:00
# Add an unprivileged user to be used for tests which need it
2014-05-23 16:29:31 -04:00
RUN groupadd -r docker
RUN useradd --create-home --gid docker unprivilegeduser
2014-05-19 16:55:28 -04:00
2013-12-01 23:31:28 -05:00
VOLUME /var/lib/docker
2014-07-24 18:19:50 -04:00
WORKDIR /go/src/github.com/docker/docker
2014-03-18 16:49:16 -04:00
ENV DOCKER_BUILDTAGS apparmor selinux
2013-09-30 15:57:30 -04:00
2013-09-06 22:19:03 -04:00
# Wrap all commands in the "docker-in-docker" script to allow nested containers
2013-12-01 23:31:28 -05:00
ENTRYPOINT [ "hack/dind" ]
2013-09-30 15:57:30 -04:00
2013-09-06 23:14:03 -04:00
# Upload docker source
2014-07-24 18:19:50 -04:00
COPY . /go/src/github.com/docker/docker