github.com/sijibomii/docker@v0.0.0-20231230191044-5cf6ca554647/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:5.3
    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  ## BUILD GOLANG 1.6
    75  # NOTE: ppc64le has compatibility issues with older versions of go, so make sure the version >= 1.6
    76  ENV GO_VERSION 1.6.1
    77  ENV GO_DOWNLOAD_URL https://golang.org/dl/go${GO_VERSION}.src.tar.gz
    78  ENV GO_DOWNLOAD_SHA256 1d4b53cdee51b2298afcf50926a7fa44b286f0bf24ff8323ce690a66daa7193f
    79  ENV GOROOT_BOOTSTRAP /usr/local
    80  
    81  RUN curl -fsSL "$GO_DOWNLOAD_URL" -o golang.tar.gz \
    82      && echo "$GO_DOWNLOAD_SHA256  golang.tar.gz" | sha256sum -c - \
    83      && tar -C /usr/src -xzf golang.tar.gz \
    84      && rm golang.tar.gz \
    85      && cd /usr/src/go/src && ./make.bash 2>&1
    86  
    87  ENV GOROOT_BOOTSTRAP /usr/src/
    88  
    89  ENV PATH /usr/src/go/bin/:/go/bin:$PATH
    90  ENV GOPATH /go:/go/src/github.com/docker/docker/vendor
    91  
    92  # This has been commented out and kept as reference because we don't support compiling with older Go anymore.
    93  # ENV GOFMT_VERSION 1.3.3
    94  # 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
    95  
    96  ENV GO_TOOLS_COMMIT 823804e1ae08dbb14eb807afc7db9993bc9e3cc3
    97  # Grab Go's cover tool for dead-simple code coverage testing
    98  # Grab Go's vet tool for examining go code to find suspicious constructs
    99  # and help prevent errors that the compiler might not catch
   100  RUN git clone https://github.com/golang/tools.git /go/src/golang.org/x/tools \
   101  	&& (cd /go/src/golang.org/x/tools && git checkout -q $GO_TOOLS_COMMIT) \
   102  	&& go install -v golang.org/x/tools/cmd/cover \
   103  	&& go install -v golang.org/x/tools/cmd/vet
   104  # Grab Go's lint tool
   105  ENV GO_LINT_COMMIT 32a87160691b3c96046c0c678fe57c5bef761456
   106  RUN git clone https://github.com/golang/lint.git /go/src/github.com/golang/lint \
   107  	&& (cd /go/src/github.com/golang/lint && git checkout -q $GO_LINT_COMMIT) \
   108  	&& go install -v github.com/golang/lint/golint
   109  
   110  # Install two versions of the registry. The first is an older version that
   111  # only supports schema1 manifests. The second is a newer version that supports
   112  # both. This allows integration-cli tests to cover push/pull with both schema1
   113  # and schema2 manifests.
   114  ENV REGISTRY_COMMIT_SCHEMA1 ec87e9b6971d831f0eff752ddb54fb64693e51cd
   115  ENV REGISTRY_COMMIT 47a064d4195a9b56133891bbb13620c3ac83a827
   116  RUN set -x \
   117  	&& export GOPATH="$(mktemp -d)" \
   118  	&& git clone https://github.com/docker/distribution.git "$GOPATH/src/github.com/docker/distribution" \
   119  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT") \
   120  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   121  		go build -o /usr/local/bin/registry-v2 github.com/docker/distribution/cmd/registry \
   122  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT_SCHEMA1") \
   123  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   124  		go build -o /usr/local/bin/registry-v2-schema1 github.com/docker/distribution/cmd/registry \
   125  	&& rm -rf "$GOPATH"
   126  
   127  # Install notary and notary-server
   128  ENV NOTARY_VERSION docker-v1.11-3
   129  RUN set -x \
   130  	&& export GOPATH="$(mktemp -d)" \
   131  	&& git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \
   132  	&& (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \
   133  	&& GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \
   134  		go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \
   135  	&& GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \
   136  		go build -o /usr/local/bin/notary github.com/docker/notary/cmd/notary \
   137  	&& rm -rf "$GOPATH"
   138  
   139  # Get the "docker-py" source so we can run their integration tests
   140  ENV DOCKER_PY_COMMIT e2878cbcc3a7eef99917adc1be252800b0e41ece
   141  RUN git clone https://github.com/docker/docker-py.git /docker-py \
   142  	&& cd /docker-py \
   143  	&& git checkout -q $DOCKER_PY_COMMIT \
   144  	&& pip install -r test-requirements.txt
   145  
   146  # Set user.email so crosbymichael's in-container merge commits go smoothly
   147  RUN git config --global user.email 'docker-dummy@example.com'
   148  
   149  # Add an unprivileged user to be used for tests which need it
   150  RUN groupadd -r docker
   151  RUN useradd --create-home --gid docker unprivilegeduser
   152  
   153  VOLUME /var/lib/docker
   154  WORKDIR /go/src/github.com/docker/docker
   155  ENV DOCKER_BUILDTAGS apparmor pkcs11 selinux
   156  
   157  # Let us use a .bashrc file
   158  RUN ln -sfv $PWD/.bashrc ~/.bashrc
   159  
   160  # Register Docker's bash completion.
   161  RUN ln -sv $PWD/contrib/completion/bash/docker /etc/bash_completion.d/docker
   162  
   163  # Get useful and necessary Hub images so we can "docker load" locally instead of pulling
   164  COPY contrib/download-frozen-image-v2.sh /go/src/github.com/docker/docker/contrib/
   165  RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
   166  	ppc64le/buildpack-deps:jessie@sha256:902bfe4ef1389f94d143d64516dd50a2de75bca2e66d4a44b1d73f63ddf05dda \
   167  	ppc64le/busybox:latest@sha256:38bb82085248d5a3c24bd7a5dc146f2f2c191e189da0441f1c2ca560e3fc6f1b \
   168  	ppc64le/debian:jessie@sha256:412845f51b6ab662afba71bc7a716e20fdb9b84f185d180d4c7504f8a75c4f91 \
   169  	ppc64le/hello-world:latest@sha256:186a40a9a02ca26df0b6c8acdfb8ac2f3ae6678996a838f977e57fac9d963974
   170  # see also "hack/make/.ensure-frozen-images" (which needs to be updated any time this list is)
   171  
   172  # Download man page generator
   173  RUN set -x \
   174  	&& export GOPATH="$(mktemp -d)" \
   175  	&& git clone --depth 1 -b v1.0.4 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
   176  	&& git clone --depth 1 -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
   177  	&& go get -v -d github.com/cpuguy83/go-md2man \
   178  	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
   179  	&& rm -rf "$GOPATH"
   180  
   181  # Download toml validator
   182  ENV TOMLV_COMMIT 9baf8a8a9f2ed20a8e54160840c492f937eeaf9a
   183  RUN set -x \
   184  	&& export GOPATH="$(mktemp -d)" \
   185  	&& git clone https://github.com/BurntSushi/toml.git "$GOPATH/src/github.com/BurntSushi/toml" \
   186  	&& (cd "$GOPATH/src/github.com/BurntSushi/toml" && git checkout -q "$TOMLV_COMMIT") \
   187  	&& go build -v -o /usr/local/bin/tomlv github.com/BurntSushi/toml/cmd/tomlv \
   188  	&& rm -rf "$GOPATH"
   189  
   190  # Build/install the tool for embedding resources in Windows binaries
   191  ENV RSRC_VERSION v2
   192  RUN set -x \
   193  	&& export GOPATH="$(mktemp -d)" \
   194  	&& git clone --depth 1 -b "$RSRC_VERSION" https://github.com/akavel/rsrc.git "$GOPATH/src/github.com/akavel/rsrc" \
   195  	&& go build -v -o /usr/local/bin/rsrc github.com/akavel/rsrc \
   196  	&& rm -rf "$GOPATH"
   197  
   198  # Install runc
   199  ENV RUNC_COMMIT e87436998478d222be209707503c27f6f91be0c5
   200  RUN set -x \
   201  	&& export GOPATH="$(mktemp -d)" \
   202  	&& git clone https://github.com/opencontainers/runc.git "$GOPATH/src/github.com/opencontainers/runc" \
   203  	&& cd "$GOPATH/src/github.com/opencontainers/runc" \
   204  	&& git checkout -q "$RUNC_COMMIT" \
   205  	&& make static BUILDTAGS="apparmor selinux" \
   206  	&& cp runc /usr/local/bin/docker-runc
   207  
   208  # Install containerd
   209  ENV CONTAINERD_COMMIT 07c95162cdcead88dfe4ca0ffb3cea02375ec54d
   210  RUN set -x \
   211  	&& export GOPATH="$(mktemp -d)" \
   212  	&& git clone https://github.com/docker/containerd.git "$GOPATH/src/github.com/docker/containerd" \
   213  	&& cd "$GOPATH/src/github.com/docker/containerd" \
   214  	&& git checkout -q "$CONTAINERD_COMMIT" \
   215  	&& make static \
   216  	&& cp bin/containerd /usr/local/bin/docker-containerd \
   217  	&& cp bin/containerd-shim /usr/local/bin/docker-containerd-shim \
   218  	&& cp bin/ctr /usr/local/bin/docker-containerd-ctr
   219  
   220  # Wrap all commands in the "docker-in-docker" script to allow nested containers
   221  ENTRYPOINT ["hack/dind"]
   222  
   223  # Upload docker source
   224  COPY . /go/src/github.com/docker/docker