github.com/nullne/docker@v1.13.0-rc1/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-unit test-integration-cli test-docker-py
    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  # ppc64le/golang is a debian:jessie based image with golang installed
    19  FROM ppc64le/golang:1.6.3
    20  
    21  # Packaged dependencies
    22  RUN apt-get update && apt-get install -y \
    23  	apparmor \
    24  	aufs-tools \
    25  	automake \
    26  	bash-completion \
    27  	btrfs-tools \
    28  	build-essential \
    29  	cmake \
    30  	createrepo \
    31  	curl \
    32  	dpkg-sig \
    33  	git \
    34  	iptables \
    35  	jq \
    36  	net-tools \
    37  	libapparmor-dev \
    38  	libcap-dev \
    39  	libltdl-dev \
    40  	libsqlite3-dev \
    41  	libsystemd-journal-dev \
    42  	libtool \
    43  	mercurial \
    44  	pkg-config \
    45  	python-dev \
    46  	python-mock \
    47  	python-pip \
    48  	python-websocket \
    49  	xfsprogs \
    50  	tar \
    51  	vim-common \
    52  	--no-install-recommends
    53  
    54  # Get lvm2 source for compiling statically
    55  ENV LVM2_VERSION 2.02.103
    56  RUN mkdir -p /usr/local/lvm2 \
    57  	&& curl -fsSL "https://mirrors.kernel.org/sourceware/lvm2/LVM2.${LVM2_VERSION}.tgz" \
    58  		| tar -xzC /usr/local/lvm2 --strip-components=1
    59  # See https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
    60  
    61  # Fix platform enablement in lvm2 to support ppc64le properly
    62  RUN set -e \
    63  	&& for f in config.guess config.sub; do \
    64  		curl -fsSL -o "/usr/local/lvm2/autoconf/$f" "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=$f;hb=HEAD"; \
    65  	done
    66  # "arch.c:78:2: error: #error the arch code needs to know about your machine type"
    67  
    68  # Compile and install lvm2
    69  RUN cd /usr/local/lvm2 \
    70  	&& ./configure \
    71  		--build="$(gcc -print-multiarch)" \
    72  		--enable-static_link \
    73  	&& make device-mapper \
    74  	&& make install_device-mapper
    75  # See https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
    76  
    77  # Install seccomp: the version shipped in jessie is too old
    78  ENV SECCOMP_VERSION 2.3.1
    79  RUN set -x \
    80          && export SECCOMP_PATH="$(mktemp -d)" \
    81          && curl -fsSL "https://github.com/seccomp/libseccomp/releases/download/v${SECCOMP_VERSION}/libseccomp-${SECCOMP_VERSION}.tar.gz" \
    82                  | tar -xzC "$SECCOMP_PATH" --strip-components=1 \
    83          && ( \
    84                  cd "$SECCOMP_PATH" \
    85                  && ./configure --prefix=/usr/local \
    86                  && make \
    87                  && make install \
    88                  && ldconfig \
    89          ) \
    90          && rm -rf "$SECCOMP_PATH"
    91  
    92  
    93  # Install Go
    94  # ppc64le doesn't have official go binaries, so use the version of go installed from the image
    95  # to build go from source.
    96  # NOTE: ppc64le has compatibility issues with older versions of go, so make sure the version >= 1.6
    97  ENV GO_VERSION 1.7.3
    98  ENV GO_DOWNLOAD_URL https://golang.org/dl/go${GO_VERSION}.src.tar.gz
    99  
   100  RUN set -x \
   101  	&& TEMPDIR="$(mktemp -d)" \
   102  	&& mv /usr/local/go $TEMPDIR \
   103  	&& GOROOT_BOOTSTRAP=$TEMPDIR/go \
   104  	&& cd /usr/local \
   105  	&& curl -fsSL "$GO_DOWNLOAD_URL" -o golang.tar.gz \
   106  	&& tar -C /usr/local -xzf golang.tar.gz \
   107  	&& rm golang.tar.gz \
   108  	&& cd go/src && ./make.bash 2>&1 \
   109  	&& rm -rf $TEMPDIR
   110  
   111  ENV GOROOT_BOOTSTRAP /usr/local/go
   112  ENV PATH /usr/local/go/bin/:$PATH
   113  ENV GOPATH /go
   114  
   115  # Dependency for golint
   116  ENV GO_TOOLS_COMMIT 823804e1ae08dbb14eb807afc7db9993bc9e3cc3
   117  RUN git clone https://github.com/golang/tools.git /go/src/golang.org/x/tools \
   118  	&& (cd /go/src/golang.org/x/tools && git checkout -q $GO_TOOLS_COMMIT)
   119  
   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.4.2
   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 e2655f658408f9ad1f62abdef3eb6ed43c0cf324
   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  # Install tomlv, vndr, runc, containerd, tini, docker-proxy
   189  # Please edit hack/dockerfile/install-binaries.sh to update them.
   190  COPY hack/dockerfile/binaries-commits /tmp/binaries-commits
   191  COPY hack/dockerfile/install-binaries.sh /tmp/install-binaries.sh
   192  RUN /tmp/install-binaries.sh tomlv vndr runc containerd tini proxy
   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