github.com/sbward/docker@v1.4.2-0.20150114010528-c9dab702bed3/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  # Packaged dependencies
    30  RUN apt-get update && apt-get install -y \
    31  	apparmor \
    32  	aufs-tools \
    33  	automake \
    34  	btrfs-tools \
    35  	build-essential \
    36  	curl \
    37  	dpkg-sig \
    38  	git \
    39  	iptables \
    40  	libapparmor-dev \
    41  	libcap-dev \
    42  	libsqlite3-dev \
    43  	mercurial \
    44  	parallel \
    45  	python-mock \
    46  	python-pip \
    47  	python-websocket \
    48  	reprepro \
    49  	ruby1.9.1 \
    50  	ruby1.9.1-dev \
    51  	s3cmd=1.1.0* \
    52  	--no-install-recommends
    53  
    54  # Get lvm2 source for compiling statically
    55  RUN git clone -b v2_02_103 https://git.fedorahosted.org/git/lvm2.git /usr/local/lvm2
    56  # see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
    57  
    58  # Compile and install lvm2
    59  RUN cd /usr/local/lvm2 \
    60  	&& ./configure --enable-static_link \
    61  	&& make device-mapper \
    62  	&& make install_device-mapper
    63  # see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
    64  
    65  # Install lxc
    66  ENV LXC_VERSION 1.0.7
    67  RUN mkdir -p /usr/src/lxc \
    68  	&& curl -sSL https://linuxcontainers.org/downloads/lxc/lxc-${LXC_VERSION}.tar.gz | tar -v -C /usr/src/lxc/ -xz --strip-components=1
    69  RUN cd /usr/src/lxc \
    70  	&& ./configure \
    71  	&& make \
    72  	&& make install \
    73  	&& ldconfig
    74  
    75  # Install Go
    76  ENV GO_VERSION 1.4
    77  RUN curl -sSL https://golang.org/dl/go${GO_VERSION}.src.tar.gz | tar -v -C /usr/local -xz \
    78  	&& mkdir -p /go/bin
    79  ENV PATH /go/bin:/usr/local/go/bin:$PATH
    80  ENV GOPATH /go:/go/src/github.com/docker/docker/vendor
    81  RUN cd /usr/local/go/src && ./make.bash --no-clean 2>&1
    82  
    83  # Compile Go for cross compilation
    84  ENV DOCKER_CROSSPLATFORMS \
    85  	linux/386 linux/arm \
    86  	darwin/amd64 darwin/386 \
    87  	freebsd/amd64 freebsd/386 freebsd/arm \
    88  	windows/amd64 windows/386
    89  
    90  # (set an explicit GOARM of 5 for maximum compatibility)
    91  ENV GOARM 5
    92  RUN cd /usr/local/go/src \
    93  	&& set -x \
    94  	&& for platform in $DOCKER_CROSSPLATFORMS; do \
    95  		GOOS=${platform%/*} \
    96  		GOARCH=${platform##*/} \
    97  			./make.bash --no-clean 2>&1; \
    98  	done
    99  
   100  # Reinstall standard library with netgo
   101  RUN go clean -i net && go install -tags netgo std
   102  
   103  # We still support compiling with older Go, so need to grab older "gofmt"
   104  ENV GOFMT_VERSION 1.3.3
   105  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
   106  
   107  # Grab Go's cover tool for dead-simple code coverage testing
   108  RUN go get golang.org/x/tools/cmd/cover
   109  
   110  # TODO replace FPM with some very minimal debhelper stuff
   111  RUN gem install --no-rdoc --no-ri fpm --version 1.3.2
   112  
   113  # Get the "busybox" image source so we can build locally instead of pulling
   114  RUN git clone -b buildroot-2014.02 https://github.com/jpetazzo/docker-busybox.git /docker-busybox
   115  
   116  # Get the "cirros" image source so we can import it instead of fetching it during tests
   117  RUN curl -sSL -o /cirros.tar.gz https://github.com/ewindisch/docker-cirros/raw/1cded459668e8b9dbf4ef976c94c05add9bbd8e9/cirros-0.3.0-x86_64-lxc.tar.gz
   118  
   119  # Get the "docker-py" source so we can run their integration tests
   120  ENV DOCKER_PY_COMMIT aa19d7b6609c6676e8258f6b900dea2eda1dbe95
   121  RUN git clone https://github.com/docker/docker-py.git /docker-py \
   122  	&& cd /docker-py \
   123  	&& git checkout -q $DOCKER_PY_COMMIT
   124  
   125  # Setup s3cmd config
   126  RUN { \
   127  		echo '[default]'; \
   128  		echo 'access_key=$AWS_ACCESS_KEY'; \
   129  		echo 'secret_key=$AWS_SECRET_KEY'; \
   130  	} > ~/.s3cfg
   131  
   132  # Set user.email so crosbymichael's in-container merge commits go smoothly
   133  RUN git config --global user.email 'docker-dummy@example.com'
   134  
   135  # Add an unprivileged user to be used for tests which need it
   136  RUN groupadd -r docker
   137  RUN useradd --create-home --gid docker unprivilegeduser
   138  
   139  VOLUME /var/lib/docker
   140  WORKDIR /go/src/github.com/docker/docker
   141  ENV DOCKER_BUILDTAGS apparmor selinux btrfs_noversion
   142  
   143  # Install man page generator
   144  COPY vendor /go/src/github.com/docker/docker/vendor
   145  # (copy vendor/ because go-md2man needs golang.org/x/net)
   146  RUN set -x \
   147  	&& git clone -b v1 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \
   148  	&& git clone -b v1.2 https://github.com/russross/blackfriday.git /go/src/github.com/russross/blackfriday \
   149  	&& go install -v github.com/cpuguy83/go-md2man
   150  
   151  # Wrap all commands in the "docker-in-docker" script to allow nested containers
   152  ENTRYPOINT ["hack/dind"]
   153  
   154  # Upload docker source
   155  COPY . /go/src/github.com/docker/docker