github.com/ncdc/docker@v0.10.1-0.20160129113957-6c6729ef5b74/Dockerfile.ppc64le (about)

     1  # This file describes the standard way to build Docker on ppc64le, using docker
     2  #
     3  # Usage:
     4  #
     5  # # Assemble the full dev environment. This is slow the first time.
     6  # docker build -t docker -f Dockerfile.ppc64le .
     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 ppc64le/gcc:5.3
    27  
    28  # Packaged dependencies
    29  RUN apt-get update && apt-get install -y \
    30  	apparmor \
    31  	aufs-tools \
    32  	automake \
    33  	bash-completion \
    34  	btrfs-tools \
    35  	build-essential \
    36  	createrepo \
    37  	curl \
    38  	dpkg-sig \
    39  	git \
    40  	iptables \
    41  	jq \
    42  	net-tools \
    43  	libapparmor-dev \
    44  	libcap-dev \
    45  	libltdl-dev \
    46  	libsqlite3-dev \
    47  	libsystemd-journal-dev \
    48  	libtool \
    49  	mercurial \
    50  	pkg-config \
    51  	python-dev \
    52  	python-mock \
    53  	python-pip \
    54  	python-websocket \
    55  	xfsprogs \
    56  	tar \
    57  	--no-install-recommends
    58  
    59  # Get lvm2 source for compiling statically
    60  ENV LVM2_VERSION 2.02.103
    61  RUN mkdir -p /usr/local/lvm2 \
    62  	&& curl -fsSL "https://mirrors.kernel.org/sourceware/lvm2/LVM2.${LVM2_VERSION}.tgz" \
    63  		| tar -xzC /usr/local/lvm2 --strip-components=1
    64  # see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
    65  
    66  # fix platform enablement in lvm2 to support ppc64le properly
    67  RUN set -e \
    68  	&& for f in config.guess config.sub; do \
    69  		curl -fsSL -o "/usr/local/lvm2/autoconf/$f" "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=$f;hb=HEAD"; \
    70  	done
    71  # "arch.c:78:2: error: #error the arch code needs to know about your machine type"
    72  
    73  # Compile and install lvm2
    74  RUN cd /usr/local/lvm2 \
    75  	&& ./configure \
    76  		--build="$(gcc -print-multiarch)" \
    77  		--enable-static_link \
    78  	&& make device-mapper \
    79  	&& make install_device-mapper
    80  # see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
    81  
    82  # TODO install Go, using gccgo as GOROOT_BOOTSTRAP (Go 1.5+ supports ppc64le properly)
    83  # possibly a ppc64le/golang image?
    84  
    85  ENV PATH /go/bin:$PATH
    86  ENV GOPATH /go:/go/src/github.com/docker/docker/vendor
    87  
    88  # This has been commented out and kept as reference because we don't support compiling with older Go anymore.
    89  # ENV GOFMT_VERSION 1.3.3
    90  # 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
    91  
    92  # TODO update this sha when we upgrade to Go 1.5+
    93  ENV GO_TOOLS_COMMIT 069d2f3bcb68257b627205f0486d6cc69a231ff9
    94  # Grab Go's cover tool for dead-simple code coverage testing
    95  # Grab Go's vet tool for examining go code to find suspicious constructs
    96  # and help prevent errors that the compiler might not catch
    97  RUN git clone https://github.com/golang/tools.git /go/src/golang.org/x/tools \
    98  	&& (cd /go/src/golang.org/x/tools && git checkout -q $GO_TOOLS_COMMIT) \
    99  	&& go install -v golang.org/x/tools/cmd/cover \
   100  	&& go install -v golang.org/x/tools/cmd/vet
   101  # Grab Go's lint tool
   102  ENV GO_LINT_COMMIT f42f5c1c440621302702cb0741e9d2ca547ae80f
   103  RUN git clone https://github.com/golang/lint.git /go/src/github.com/golang/lint \
   104  	&& (cd /go/src/github.com/golang/lint && git checkout -q $GO_LINT_COMMIT) \
   105  	&& go install -v github.com/golang/lint/golint
   106  
   107  # Install two versions of the registry. The first is an older version that
   108  # only supports schema1 manifests. The second is a newer version that supports
   109  # both. This allows integration-cli tests to cover push/pull with both schema1
   110  # and schema2 manifests.
   111  ENV REGISTRY_COMMIT_SCHEMA1 ec87e9b6971d831f0eff752ddb54fb64693e51cd
   112  ENV REGISTRY_COMMIT a7ae88da459b98b481a245e5b1750134724ac67d
   113  RUN set -x \
   114  	&& export GOPATH="$(mktemp -d)" \
   115  	&& git clone https://github.com/docker/distribution.git "$GOPATH/src/github.com/docker/distribution" \
   116  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT") \
   117  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   118  		go build -o /usr/local/bin/registry-v2 github.com/docker/distribution/cmd/registry \
   119  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT_SCHEMA1") \
   120  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   121  		go build -o /usr/local/bin/registry-v2-schema1 github.com/docker/distribution/cmd/registry \
   122  	&& rm -rf "$GOPATH"
   123  
   124  # TODO update this when we upgrade to Go 1.5.1+
   125  # Install notary server
   126  #ENV NOTARY_VERSION docker-v1.10-5
   127  #RUN set -x \
   128  #	&& export GOPATH="$(mktemp -d)" \
   129  #	&& git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \
   130  #	&& (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \
   131  #	&& GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \
   132  #		go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \
   133  #	&& rm -rf "$GOPATH"
   134  
   135  # Get the "docker-py" source so we can run their integration tests
   136  ENV DOCKER_PY_COMMIT e2878cbcc3a7eef99917adc1be252800b0e41ece
   137  RUN git clone https://github.com/docker/docker-py.git /docker-py \
   138  	&& cd /docker-py \
   139  	&& git checkout -q $DOCKER_PY_COMMIT \
   140  	&& pip install -r test-requirements.txt
   141  
   142  # Set user.email so crosbymichael's in-container merge commits go smoothly
   143  RUN git config --global user.email 'docker-dummy@example.com'
   144  
   145  # Add an unprivileged user to be used for tests which need it
   146  RUN groupadd -r docker
   147  RUN useradd --create-home --gid docker unprivilegeduser
   148  
   149  VOLUME /var/lib/docker
   150  WORKDIR /go/src/github.com/docker/docker
   151  ENV DOCKER_BUILDTAGS apparmor selinux
   152  
   153  # Let us use a .bashrc file
   154  RUN ln -sfv $PWD/.bashrc ~/.bashrc
   155  
   156  # Register Docker's bash completion.
   157  RUN ln -sv $PWD/contrib/completion/bash/docker /etc/bash_completion.d/docker
   158  
   159  # Get useful and necessary Hub images so we can "docker load" locally instead of pulling
   160  COPY contrib/download-frozen-image-v2.sh /go/src/github.com/docker/docker/contrib/
   161  RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
   162  	ppc64le/buildpack-deps:jessie@sha256:902bfe4ef1389f94d143d64516dd50a2de75bca2e66d4a44b1d73f63ddf05dda \
   163  	ppc64le/busybox:latest@sha256:38bb82085248d5a3c24bd7a5dc146f2f2c191e189da0441f1c2ca560e3fc6f1b \
   164  	ppc64le/debian:jessie@sha256:412845f51b6ab662afba71bc7a716e20fdb9b84f185d180d4c7504f8a75c4f91 \
   165  	ppc64le/hello-world:latest@sha256:186a40a9a02ca26df0b6c8acdfb8ac2f3ae6678996a838f977e57fac9d963974
   166  # see also "hack/make/.ensure-frozen-images" (which needs to be updated any time this list is)
   167  
   168  # Download man page generator
   169  RUN set -x \
   170  	&& export GOPATH="$(mktemp -d)" \
   171  	&& git clone --depth 1 -b v1.0.4 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
   172  	&& git clone --depth 1 -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
   173  	&& go get -v -d github.com/cpuguy83/go-md2man \
   174  	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
   175  	&& rm -rf "$GOPATH"
   176  
   177  # Download toml validator
   178  ENV TOMLV_COMMIT 9baf8a8a9f2ed20a8e54160840c492f937eeaf9a
   179  RUN set -x \
   180  	&& export GOPATH="$(mktemp -d)" \
   181  	&& git clone https://github.com/BurntSushi/toml.git "$GOPATH/src/github.com/BurntSushi/toml" \
   182  	&& (cd "$GOPATH/src/github.com/BurntSushi/toml" && git checkout -q "$TOMLV_COMMIT") \
   183  	&& go build -v -o /usr/local/bin/tomlv github.com/BurntSushi/toml/cmd/tomlv \
   184  	&& rm -rf "$GOPATH"
   185  
   186  # Build/install the tool for embedding resources in Windows binaries
   187  ENV RSRC_VERSION v2
   188  RUN set -x \
   189  	&& export GOPATH="$(mktemp -d)" \
   190  	&& git clone --depth 1 -b "$RSRC_VERSION" https://github.com/akavel/rsrc.git "$GOPATH/src/github.com/akavel/rsrc" \
   191  	&& go build -v -o /usr/local/bin/rsrc github.com/akavel/rsrc \
   192  	&& rm -rf "$GOPATH"
   193  
   194  # Wrap all commands in the "docker-in-docker" script to allow nested containers
   195  ENTRYPOINT ["hack/dind"]
   196  
   197  # Upload docker source
   198  COPY . /go/src/github.com/docker/docker