github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/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  # allow replacing httpredir or deb mirror
    22  ARG APT_MIRROR=deb.debian.org
    23  RUN sed -ri "s/(httpredir|deb).debian.org/$APT_MIRROR/g" /etc/apt/sources.list
    24  
    25  # Packaged dependencies
    26  RUN apt-get update && apt-get install -y \
    27  	apparmor \
    28  	aufs-tools \
    29  	automake \
    30  	bash-completion \
    31  	btrfs-tools \
    32  	build-essential \
    33  	cmake \
    34  	createrepo \
    35  	curl \
    36  	dpkg-sig \
    37  	git \
    38  	iptables \
    39  	jq \
    40  	net-tools \
    41  	libapparmor-dev \
    42  	libcap-dev \
    43  	libltdl-dev \
    44  	libsqlite3-dev \
    45  	libsystemd-journal-dev \
    46  	libtool \
    47  	mercurial \
    48  	pkg-config \
    49  	python-dev \
    50  	python-mock \
    51  	python-pip \
    52  	python-websocket \
    53  	xfsprogs \
    54  	tar \
    55  	vim-common \
    56  	--no-install-recommends
    57  
    58  # Get lvm2 source for compiling statically
    59  ENV LVM2_VERSION 2.02.103
    60  RUN mkdir -p /usr/local/lvm2 \
    61  	&& curl -fsSL "https://mirrors.kernel.org/sourceware/lvm2/LVM2.${LVM2_VERSION}.tgz" \
    62  		| tar -xzC /usr/local/lvm2 --strip-components=1
    63  # See https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
    64  
    65  # Fix platform enablement in lvm2 to support ppc64le properly
    66  RUN set -e \
    67  	&& for f in config.guess config.sub; do \
    68  		curl -fsSL -o "/usr/local/lvm2/autoconf/$f" "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=$f;hb=HEAD"; \
    69  	done
    70  # "arch.c:78:2: error: #error the arch code needs to know about your machine type"
    71  
    72  # Compile and install lvm2
    73  RUN cd /usr/local/lvm2 \
    74  	&& ./configure \
    75  		--build="$(gcc -print-multiarch)" \
    76  		--enable-static_link \
    77  	&& make device-mapper \
    78  	&& make install_device-mapper
    79  # See https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
    80  
    81  # Install seccomp: the version shipped in jessie is too old
    82  ENV SECCOMP_VERSION 2.3.1
    83  RUN set -x \
    84          && export SECCOMP_PATH="$(mktemp -d)" \
    85          && curl -fsSL "https://github.com/seccomp/libseccomp/releases/download/v${SECCOMP_VERSION}/libseccomp-${SECCOMP_VERSION}.tar.gz" \
    86                  | tar -xzC "$SECCOMP_PATH" --strip-components=1 \
    87          && ( \
    88                  cd "$SECCOMP_PATH" \
    89                  && ./configure --prefix=/usr/local \
    90                  && make \
    91                  && make install \
    92                  && ldconfig \
    93          ) \
    94          && rm -rf "$SECCOMP_PATH"
    95  
    96  
    97  # Install Go
    98  # ppc64le doesn't have official go binaries, so use the version of go installed from the image
    99  # to build go from source.
   100  # NOTE: ppc64le has compatibility issues with older versions of go, so make sure the version >= 1.6
   101  ENV GO_VERSION 1.7.3
   102  ENV GO_DOWNLOAD_URL https://golang.org/dl/go${GO_VERSION}.src.tar.gz
   103  
   104  RUN set -x \
   105  	&& TEMPDIR="$(mktemp -d)" \
   106  	&& mv /usr/local/go $TEMPDIR \
   107  	&& GOROOT_BOOTSTRAP=$TEMPDIR/go \
   108  	&& cd /usr/local \
   109  	&& curl -fsSL "$GO_DOWNLOAD_URL" -o golang.tar.gz \
   110  	&& tar -C /usr/local -xzf golang.tar.gz \
   111  	&& rm golang.tar.gz \
   112  	&& cd go/src && ./make.bash 2>&1 \
   113  	&& rm -rf $TEMPDIR
   114  
   115  ENV GOROOT_BOOTSTRAP /usr/local/go
   116  ENV PATH /usr/local/go/bin/:$PATH
   117  ENV GOPATH /go
   118  
   119  # Dependency for golint
   120  ENV GO_TOOLS_COMMIT 823804e1ae08dbb14eb807afc7db9993bc9e3cc3
   121  RUN git clone https://github.com/golang/tools.git /go/src/golang.org/x/tools \
   122  	&& (cd /go/src/golang.org/x/tools && git checkout -q $GO_TOOLS_COMMIT)
   123  
   124  # Grab Go's lint tool
   125  ENV GO_LINT_COMMIT 32a87160691b3c96046c0c678fe57c5bef761456
   126  RUN git clone https://github.com/golang/lint.git /go/src/github.com/golang/lint \
   127  	&& (cd /go/src/github.com/golang/lint && git checkout -q $GO_LINT_COMMIT) \
   128  	&& go install -v github.com/golang/lint/golint
   129  
   130  # Install two versions of the registry. The first is an older version that
   131  # only supports schema1 manifests. The second is a newer version that supports
   132  # both. This allows integration-cli tests to cover push/pull with both schema1
   133  # and schema2 manifests.
   134  ENV REGISTRY_COMMIT_SCHEMA1 ec87e9b6971d831f0eff752ddb54fb64693e51cd
   135  ENV REGISTRY_COMMIT 47a064d4195a9b56133891bbb13620c3ac83a827
   136  RUN set -x \
   137  	&& export GOPATH="$(mktemp -d)" \
   138  	&& git clone https://github.com/docker/distribution.git "$GOPATH/src/github.com/docker/distribution" \
   139  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT") \
   140  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   141  		go build -o /usr/local/bin/registry-v2 github.com/docker/distribution/cmd/registry \
   142  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT_SCHEMA1") \
   143  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   144  		go build -o /usr/local/bin/registry-v2-schema1 github.com/docker/distribution/cmd/registry \
   145  	&& rm -rf "$GOPATH"
   146  
   147  # Install notary and notary-server
   148  ENV NOTARY_VERSION v0.4.2
   149  RUN set -x \
   150  	&& export GOPATH="$(mktemp -d)" \
   151  	&& git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \
   152  	&& (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \
   153  	&& GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \
   154  		go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \
   155  	&& GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \
   156  		go build -o /usr/local/bin/notary github.com/docker/notary/cmd/notary \
   157  	&& rm -rf "$GOPATH"
   158  
   159  # Get the "docker-py" source so we can run their integration tests
   160  ENV DOCKER_PY_COMMIT e2655f658408f9ad1f62abdef3eb6ed43c0cf324
   161  RUN git clone https://github.com/docker/docker-py.git /docker-py \
   162  	&& cd /docker-py \
   163  	&& git checkout -q $DOCKER_PY_COMMIT \
   164  	&& pip install -r test-requirements.txt
   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 pkcs11 seccomp 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-v2.sh /go/src/github.com/docker/docker/contrib/
   185  RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
   186  	ppc64le/buildpack-deps:jessie@sha256:902bfe4ef1389f94d143d64516dd50a2de75bca2e66d4a44b1d73f63ddf05dda \
   187  	ppc64le/busybox:latest@sha256:38bb82085248d5a3c24bd7a5dc146f2f2c191e189da0441f1c2ca560e3fc6f1b \
   188  	ppc64le/debian:jessie@sha256:412845f51b6ab662afba71bc7a716e20fdb9b84f185d180d4c7504f8a75c4f91 \
   189  	ppc64le/hello-world:latest@sha256:186a40a9a02ca26df0b6c8acdfb8ac2f3ae6678996a838f977e57fac9d963974
   190  # See also "hack/make/.ensure-frozen-images" (which needs to be updated any time this list is)
   191  
   192  # Install tomlv, vndr, runc, containerd, tini, docker-proxy
   193  # Please edit hack/dockerfile/install-binaries.sh to update them.
   194  COPY hack/dockerfile/binaries-commits /tmp/binaries-commits
   195  COPY hack/dockerfile/install-binaries.sh /tmp/install-binaries.sh
   196  RUN /tmp/install-binaries.sh tomlv vndr runc containerd tini proxy
   197  
   198  # Wrap all commands in the "docker-in-docker" script to allow nested containers
   199  ENTRYPOINT ["hack/dind"]
   200  
   201  # Upload docker source
   202  COPY . /go/src/github.com/docker/docker