github.com/noxiouz/docker@v0.7.3-0.20160629055221-3d231c78e8c5/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  # Note: AppArmor used to mess with privileged mode, but this is no longer
    15  # the case. Therefore, you don't have to disable it anymore.
    16  #
    17  
    18  FROM ppc64le/gcc:6.1
    19  
    20  # Packaged dependencies
    21  RUN apt-get update && apt-get install -y \
    22  	apparmor \
    23  	aufs-tools \
    24  	automake \
    25  	bash-completion \
    26  	btrfs-tools \
    27  	build-essential \
    28  	createrepo \
    29  	curl \
    30  	dpkg-sig \
    31  	git \
    32  	iptables \
    33  	jq \
    34  	net-tools \
    35  	libapparmor-dev \
    36  	libcap-dev \
    37  	libltdl-dev \
    38  	libsqlite3-dev \
    39  	libsystemd-journal-dev \
    40  	libtool \
    41  	mercurial \
    42  	pkg-config \
    43  	python-dev \
    44  	python-mock \
    45  	python-pip \
    46  	python-websocket \
    47  	xfsprogs \
    48  	tar \
    49  	--no-install-recommends
    50  
    51  # Get lvm2 source for compiling statically
    52  ENV LVM2_VERSION 2.02.103
    53  RUN mkdir -p /usr/local/lvm2 \
    54  	&& curl -fsSL "https://mirrors.kernel.org/sourceware/lvm2/LVM2.${LVM2_VERSION}.tgz" \
    55  		| tar -xzC /usr/local/lvm2 --strip-components=1
    56  # see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
    57  
    58  # fix platform enablement in lvm2 to support ppc64le properly
    59  RUN set -e \
    60  	&& for f in config.guess config.sub; do \
    61  		curl -fsSL -o "/usr/local/lvm2/autoconf/$f" "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=$f;hb=HEAD"; \
    62  	done
    63  # "arch.c:78:2: error: #error the arch code needs to know about your machine type"
    64  
    65  # Compile and install lvm2
    66  RUN cd /usr/local/lvm2 \
    67  	&& ./configure \
    68  		--build="$(gcc -print-multiarch)" \
    69  		--enable-static_link \
    70  	&& make device-mapper \
    71  	&& make install_device-mapper
    72  # see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
    73  
    74  # install seccomp: the version shipped in jessie is too old
    75  ENV SECCOMP_VERSION 2.3.1
    76  RUN set -x \
    77          && export SECCOMP_PATH="$(mktemp -d)" \
    78          && curl -fsSL "https://github.com/seccomp/libseccomp/releases/download/v${SECCOMP_VERSION}/libseccomp-${SECCOMP_VERSION}.tar.gz" \
    79                  | tar -xzC "$SECCOMP_PATH" --strip-components=1 \
    80          && ( \
    81                  cd "$SECCOMP_PATH" \
    82                  && ./configure --prefix=/usr/local \
    83                  && make \
    84                  && make install \
    85                  && ldconfig \
    86          ) \
    87          && rm -rf "$SECCOMP_PATH"
    88  
    89  
    90  ## BUILD GOLANG 1.6
    91  # NOTE: ppc64le has compatibility issues with older versions of go, so make sure the version >= 1.6
    92  ENV GO_VERSION 1.6.2
    93  ENV GO_DOWNLOAD_URL https://golang.org/dl/go${GO_VERSION}.src.tar.gz
    94  ENV GO_DOWNLOAD_SHA256 787b0b750d037016a30c6ed05a8a70a91b2e9db4bd9b1a2453aa502a63f1bccc
    95  ENV GOROOT_BOOTSTRAP /usr/local
    96  
    97  RUN curl -fsSL "$GO_DOWNLOAD_URL" -o golang.tar.gz \
    98      && echo "$GO_DOWNLOAD_SHA256  golang.tar.gz" | sha256sum -c - \
    99      && tar -C /usr/src -xzf golang.tar.gz \
   100      && rm golang.tar.gz \
   101      && cd /usr/src/go/src && ./make.bash 2>&1
   102  
   103  ENV GOROOT_BOOTSTRAP /usr/src/
   104  
   105  ENV PATH /usr/src/go/bin/:/go/bin:$PATH
   106  ENV GOPATH /go:/go/src/github.com/docker/docker/vendor
   107  
   108  # This has been commented out and kept as reference because we don't support compiling with older Go anymore.
   109  # ENV GOFMT_VERSION 1.3.3
   110  # 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
   111  
   112  ENV GO_TOOLS_COMMIT 823804e1ae08dbb14eb807afc7db9993bc9e3cc3
   113  # Grab Go's cover tool for dead-simple code coverage testing
   114  # Grab Go's vet tool for examining go code to find suspicious constructs
   115  # and help prevent errors that the compiler might not catch
   116  RUN git clone https://github.com/golang/tools.git /go/src/golang.org/x/tools \
   117  	&& (cd /go/src/golang.org/x/tools && git checkout -q $GO_TOOLS_COMMIT) \
   118  	&& go install -v golang.org/x/tools/cmd/cover \
   119  	&& go install -v golang.org/x/tools/cmd/vet
   120  # Grab Go's lint tool
   121  ENV GO_LINT_COMMIT 32a87160691b3c96046c0c678fe57c5bef761456
   122  RUN git clone https://github.com/golang/lint.git /go/src/github.com/golang/lint \
   123  	&& (cd /go/src/github.com/golang/lint && git checkout -q $GO_LINT_COMMIT) \
   124  	&& go install -v github.com/golang/lint/golint
   125  
   126  # Install two versions of the registry. The first is an older version that
   127  # only supports schema1 manifests. The second is a newer version that supports
   128  # both. This allows integration-cli tests to cover push/pull with both schema1
   129  # and schema2 manifests.
   130  ENV REGISTRY_COMMIT_SCHEMA1 ec87e9b6971d831f0eff752ddb54fb64693e51cd
   131  ENV REGISTRY_COMMIT 47a064d4195a9b56133891bbb13620c3ac83a827
   132  RUN set -x \
   133  	&& export GOPATH="$(mktemp -d)" \
   134  	&& git clone https://github.com/docker/distribution.git "$GOPATH/src/github.com/docker/distribution" \
   135  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT") \
   136  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   137  		go build -o /usr/local/bin/registry-v2 github.com/docker/distribution/cmd/registry \
   138  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT_SCHEMA1") \
   139  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   140  		go build -o /usr/local/bin/registry-v2-schema1 github.com/docker/distribution/cmd/registry \
   141  	&& rm -rf "$GOPATH"
   142  
   143  # Install notary and notary-server
   144  ENV NOTARY_VERSION v0.3.0
   145  RUN set -x \
   146  	&& export GOPATH="$(mktemp -d)" \
   147  	&& git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \
   148  	&& (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \
   149  	&& GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \
   150  		go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \
   151  	&& GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \
   152  		go build -o /usr/local/bin/notary github.com/docker/notary/cmd/notary \
   153  	&& rm -rf "$GOPATH"
   154  
   155  # Get the "docker-py" source so we can run their integration tests
   156  ENV DOCKER_PY_COMMIT 7befe694bd21e3c54bb1d7825270ea4bd6864c13
   157  RUN git clone https://github.com/docker/docker-py.git /docker-py \
   158  	&& cd /docker-py \
   159  	&& git checkout -q $DOCKER_PY_COMMIT \
   160  	&& pip install -r test-requirements.txt
   161  
   162  # Set user.email so crosbymichael's in-container merge commits go smoothly
   163  RUN git config --global user.email 'docker-dummy@example.com'
   164  
   165  # Add an unprivileged user to be used for tests which need it
   166  RUN groupadd -r docker
   167  RUN useradd --create-home --gid docker unprivilegeduser
   168  
   169  VOLUME /var/lib/docker
   170  WORKDIR /go/src/github.com/docker/docker
   171  ENV DOCKER_BUILDTAGS apparmor pkcs11 seccomp selinux
   172  
   173  # Let us use a .bashrc file
   174  RUN ln -sfv $PWD/.bashrc ~/.bashrc
   175  
   176  # Register Docker's bash completion.
   177  RUN ln -sv $PWD/contrib/completion/bash/docker /etc/bash_completion.d/docker
   178  
   179  # Get useful and necessary Hub images so we can "docker load" locally instead of pulling
   180  COPY contrib/download-frozen-image-v2.sh /go/src/github.com/docker/docker/contrib/
   181  RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
   182  	ppc64le/buildpack-deps:jessie@sha256:902bfe4ef1389f94d143d64516dd50a2de75bca2e66d4a44b1d73f63ddf05dda \
   183  	ppc64le/busybox:latest@sha256:38bb82085248d5a3c24bd7a5dc146f2f2c191e189da0441f1c2ca560e3fc6f1b \
   184  	ppc64le/debian:jessie@sha256:412845f51b6ab662afba71bc7a716e20fdb9b84f185d180d4c7504f8a75c4f91 \
   185  	ppc64le/hello-world:latest@sha256:186a40a9a02ca26df0b6c8acdfb8ac2f3ae6678996a838f977e57fac9d963974
   186  # see also "hack/make/.ensure-frozen-images" (which needs to be updated any time this list is)
   187  
   188  # Download man page generator
   189  RUN set -x \
   190  	&& export GOPATH="$(mktemp -d)" \
   191  	&& git clone --depth 1 -b v1.0.5 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
   192  	&& git clone --depth 1 -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
   193  	&& go get -v -d github.com/cpuguy83/go-md2man \
   194  	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
   195  	&& rm -rf "$GOPATH"
   196  
   197  # Download toml validator
   198  ENV TOMLV_COMMIT 9baf8a8a9f2ed20a8e54160840c492f937eeaf9a
   199  RUN set -x \
   200  	&& export GOPATH="$(mktemp -d)" \
   201  	&& git clone https://github.com/BurntSushi/toml.git "$GOPATH/src/github.com/BurntSushi/toml" \
   202  	&& (cd "$GOPATH/src/github.com/BurntSushi/toml" && git checkout -q "$TOMLV_COMMIT") \
   203  	&& go build -v -o /usr/local/bin/tomlv github.com/BurntSushi/toml/cmd/tomlv \
   204  	&& rm -rf "$GOPATH"
   205  
   206  # Install runc
   207  ENV RUNC_COMMIT cc29e3dded8e27ba8f65738f40d251c885030a28
   208  RUN set -x \
   209  	&& export GOPATH="$(mktemp -d)" \
   210  	&& git clone https://github.com/opencontainers/runc.git "$GOPATH/src/github.com/opencontainers/runc" \
   211  	&& cd "$GOPATH/src/github.com/opencontainers/runc" \
   212  	&& git checkout -q "$RUNC_COMMIT" \
   213  	&& make static BUILDTAGS="apparmor seccomp selinux" \
   214  	&& cp runc /usr/local/bin/docker-runc \
   215  	&& rm -rf "$GOPATH"
   216  
   217  # Install containerd
   218  ENV CONTAINERD_COMMIT b93a33be39bc4ef0fb00bfcb79147a28c33d9d43
   219  RUN set -x \
   220  	&& export GOPATH="$(mktemp -d)" \
   221  	&& git clone https://github.com/docker/containerd.git "$GOPATH/src/github.com/docker/containerd" \
   222  	&& cd "$GOPATH/src/github.com/docker/containerd" \
   223  	&& git checkout -q "$CONTAINERD_COMMIT" \
   224  	&& make static \
   225  	&& cp bin/containerd /usr/local/bin/docker-containerd \
   226  	&& cp bin/containerd-shim /usr/local/bin/docker-containerd-shim \
   227  	&& cp bin/ctr /usr/local/bin/docker-containerd-ctr \
   228  	&& rm -rf "$GOPATH"
   229  
   230  # Wrap all commands in the "docker-in-docker" script to allow nested containers
   231  ENTRYPOINT ["hack/dind"]
   232  
   233  # Upload docker source
   234  COPY . /go/src/github.com/docker/docker