github.com/shiroyuki/docker@v1.9.0/Dockerfile (about)

     1  # This file describes the standard way to build Docker, using docker
     2  #
     3  # Usage:
     4  #
     5  # # Assemble the full dev environment. This is slow the first time.
     6  # docker build -t docker .
     7  #
     8  # # Mount your source in an interactive container for quick testing:
     9  # docker run -v `pwd`:/go/src/github.com/docker/docker --privileged -i -t docker bash
    10  #
    11  # # Run the test suite:
    12  # docker run --privileged docker hack/make.sh test
    13  #
    14  # # Publish a release:
    15  # docker run --privileged \
    16  #  -e AWS_S3_BUCKET=baz \
    17  #  -e AWS_ACCESS_KEY=foo \
    18  #  -e AWS_SECRET_KEY=bar \
    19  #  -e GPG_PASSPHRASE=gloubiboulga \
    20  #  docker hack/release.sh
    21  #
    22  # Note: AppArmor used to mess with privileged mode, but this is no longer
    23  # the case. Therefore, you don't have to disable it anymore.
    24  #
    25  
    26  FROM ubuntu:14.04
    27  MAINTAINER Tianon Gravi <admwiggin@gmail.com> (@tianon)
    28  
    29  RUN	apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys E871F18B51E0147C77796AC81196BA81F6B0FC61
    30  RUN	echo deb http://ppa.launchpad.net/zfs-native/stable/ubuntu trusty main > /etc/apt/sources.list.d/zfs.list
    31  
    32  # Packaged dependencies
    33  RUN apt-get update && apt-get install -y \
    34  	apparmor \
    35  	aufs-tools \
    36  	automake \
    37  	bash-completion \
    38  	btrfs-tools \
    39  	build-essential \
    40  	createrepo \
    41  	curl \
    42  	dpkg-sig \
    43  	gcc-mingw-w64 \
    44  	git \
    45  	iptables \
    46  	libapparmor-dev \
    47  	libcap-dev \
    48  	libsqlite3-dev \
    49  	libsystemd-journal-dev \
    50  	mercurial \
    51  	parallel \
    52  	pkg-config \
    53  	python-mock \
    54  	python-pip \
    55  	python-websocket \
    56  	reprepro \
    57  	ruby1.9.1 \
    58  	ruby1.9.1-dev \
    59  	s3cmd=1.1.0* \
    60  	ubuntu-zfs \
    61  	libzfs-dev \
    62  	--no-install-recommends
    63  
    64  # Get lvm2 source for compiling statically
    65  RUN git clone -b v2_02_103 https://git.fedorahosted.org/git/lvm2.git /usr/local/lvm2
    66  # see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
    67  
    68  # Compile and install lvm2
    69  RUN cd /usr/local/lvm2 \
    70  	&& ./configure --enable-static_link \
    71  	&& make device-mapper \
    72  	&& make install_device-mapper
    73  # see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
    74  
    75  # Install lxc
    76  ENV LXC_VERSION 1.1.2
    77  RUN mkdir -p /usr/src/lxc \
    78  	&& curl -sSL https://linuxcontainers.org/downloads/lxc/lxc-${LXC_VERSION}.tar.gz | tar -v -C /usr/src/lxc/ -xz --strip-components=1
    79  RUN cd /usr/src/lxc \
    80  	&& ./configure \
    81  	&& make \
    82  	&& make install \
    83  	&& ldconfig
    84  
    85  # Install Go
    86  ENV GO_VERSION 1.4.3
    87  RUN curl -sSL https://golang.org/dl/go${GO_VERSION}.src.tar.gz | tar -v -C /usr/local -xz \
    88  	&& mkdir -p /go/bin
    89  ENV PATH /go/bin:/usr/local/go/bin:$PATH
    90  ENV GOPATH /go:/go/src/github.com/docker/docker/vendor
    91  RUN cd /usr/local/go/src && ./make.bash --no-clean 2>&1
    92  
    93  # Compile Go for cross compilation
    94  ENV DOCKER_CROSSPLATFORMS \
    95  	linux/386 linux/arm \
    96  	darwin/amd64 darwin/386 \
    97  	freebsd/amd64 freebsd/386 freebsd/arm \
    98  	windows/amd64 windows/386
    99  
   100  # (set an explicit GOARM of 5 for maximum compatibility)
   101  ENV GOARM 5
   102  RUN cd /usr/local/go/src \
   103  	&& set -x \
   104  	&& for platform in $DOCKER_CROSSPLATFORMS; do \
   105  		GOOS=${platform%/*} \
   106  		GOARCH=${platform##*/} \
   107  			./make.bash --no-clean 2>&1; \
   108  	done
   109  
   110  # This has been commented out and kept as reference because we don't support compiling with older Go anymore.
   111  # ENV GOFMT_VERSION 1.3.3
   112  # 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
   113  
   114  # Update this sha when we upgrade to go 1.5.0
   115  ENV GO_TOOLS_COMMIT 069d2f3bcb68257b627205f0486d6cc69a231ff9
   116  # Grab Go's cover tool for dead-simple code coverage testing
   117  # Grab Go's vet tool for examining go code to find suspicious constructs
   118  # and help prevent errors that the compiler might not catch
   119  RUN git clone https://github.com/golang/tools.git /go/src/golang.org/x/tools \
   120  	&& (cd /go/src/golang.org/x/tools && git checkout -q $GO_TOOLS_COMMIT) \
   121  	&& go install -v golang.org/x/tools/cmd/cover \
   122  	&& go install -v golang.org/x/tools/cmd/vet
   123  # Grab Go's lint tool
   124  ENV GO_LINT_COMMIT f42f5c1c440621302702cb0741e9d2ca547ae80f
   125  RUN git clone https://github.com/golang/lint.git /go/src/github.com/golang/lint \
   126  	&& (cd /go/src/github.com/golang/lint && git checkout -q $GO_LINT_COMMIT) \
   127  	&& go install -v github.com/golang/lint/golint
   128  
   129  # TODO replace FPM with some very minimal debhelper stuff
   130  RUN gem install --no-rdoc --no-ri fpm --version 1.3.2
   131  
   132  # Install registry
   133  ENV REGISTRY_COMMIT ec87e9b6971d831f0eff752ddb54fb64693e51cd
   134  RUN set -x \
   135  	&& export GOPATH="$(mktemp -d)" \
   136  	&& git clone https://github.com/docker/distribution.git "$GOPATH/src/github.com/docker/distribution" \
   137  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT") \
   138  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   139  		go build -o /usr/local/bin/registry-v2 github.com/docker/distribution/cmd/registry \
   140  	&& rm -rf "$GOPATH"
   141  
   142  # Install notary server
   143  ENV NOTARY_COMMIT 8e8122eb5528f621afcd4e2854c47302f17392f7
   144  RUN set -x \
   145  	&& export GOPATH="$(mktemp -d)" \
   146  	&& git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \
   147  	&& (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_COMMIT") \
   148  	&& GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \
   149  		go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \
   150  	&& rm -rf "$GOPATH"
   151  
   152  # Get the "docker-py" source so we can run their integration tests
   153  ENV DOCKER_PY_COMMIT 47ab89ec2bd3bddf1221b856ffbaff333edeabb4
   154  RUN git clone https://github.com/docker/docker-py.git /docker-py \
   155  	&& cd /docker-py \
   156  	&& git checkout -q $DOCKER_PY_COMMIT \
   157  	&& pip install -r test-requirements.txt
   158  
   159  # Setup s3cmd config
   160  RUN { \
   161  		echo '[default]'; \
   162  		echo 'access_key=$AWS_ACCESS_KEY'; \
   163  		echo 'secret_key=$AWS_SECRET_KEY'; \
   164  	} > ~/.s3cfg
   165  
   166  # Set user.email so crosbymichael's in-container merge commits go smoothly
   167  RUN git config --global user.email 'docker-dummy@example.com'
   168  
   169  # Add an unprivileged user to be used for tests which need it
   170  RUN groupadd -r docker
   171  RUN useradd --create-home --gid docker unprivilegeduser
   172  
   173  VOLUME /var/lib/docker
   174  WORKDIR /go/src/github.com/docker/docker
   175  ENV DOCKER_BUILDTAGS apparmor selinux
   176  
   177  # Let us use a .bashrc file
   178  RUN ln -sfv $PWD/.bashrc ~/.bashrc
   179  
   180  # Register Docker's bash completion.
   181  RUN ln -sv $PWD/contrib/completion/bash/docker /etc/bash_completion.d/docker
   182  
   183  # Get useful and necessary Hub images so we can "docker load" locally instead of pulling
   184  COPY contrib/download-frozen-image.sh /go/src/github.com/docker/docker/contrib/
   185  RUN ./contrib/download-frozen-image.sh /docker-frozen-images \
   186  	busybox:latest@8c2e06607696bd4afb3d03b687e361cc43cf8ec1a4a725bc96e39f05ba97dd55 \
   187  	hello-world:frozen@91c95931e552b11604fea91c2f537284149ec32fff0f700a4769cfd31d7696ae \
   188  	jess/unshare@5c9f6ea50341a2a8eb6677527f2bdedbf331ae894a41714fda770fb130f3314d
   189  # see also "hack/make/.ensure-frozen-images" (which needs to be updated any time this list is)
   190  
   191  # Download man page generator
   192  RUN set -x \
   193  	&& export GOPATH="$(mktemp -d)" \
   194  	&& git clone -b v1.0.3 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
   195  	&& git clone -b v1.2 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
   196  	&& go get -v -d github.com/cpuguy83/go-md2man \
   197  	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
   198  	&& rm -rf "$GOPATH"
   199  
   200  # Download toml validator
   201  ENV TOMLV_COMMIT 9baf8a8a9f2ed20a8e54160840c492f937eeaf9a
   202  RUN set -x \
   203  	&& export GOPATH="$(mktemp -d)" \
   204  	&& git clone https://github.com/BurntSushi/toml.git "$GOPATH/src/github.com/BurntSushi/toml" \
   205  	&& (cd "$GOPATH/src/github.com/BurntSushi/toml" && git checkout -q "$TOMLV_COMMIT") \
   206  	&& go build -v -o /usr/local/bin/tomlv github.com/BurntSushi/toml/cmd/tomlv \
   207  	&& rm -rf "$GOPATH"
   208  
   209  # Build/install the tool for embedding resources in Windows binaries
   210  ENV RSRC_COMMIT e48dbf1b7fc464a9e85fcec450dddf80816b76e0
   211  RUN set -x \
   212      && git clone https://github.com/akavel/rsrc.git /go/src/github.com/akavel/rsrc \
   213      && cd /go/src/github.com/akavel/rsrc \
   214      && git checkout -q $RSRC_COMMIT \
   215      && go install -v
   216  
   217  # Wrap all commands in the "docker-in-docker" script to allow nested containers
   218  ENTRYPOINT ["hack/dind"]
   219  
   220  # Upload docker source
   221  COPY . /go/src/github.com/docker/docker