github.com/akerouanton/docker@v1.11.0-rc3/Dockerfile.s390x (about)

     1  # This file describes the standard way to build Docker on s390x, 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.s390x .
     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 s390x/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 s390x 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  # Note: Go comes from the base image (gccgo, specifically)
    75  # We can't compile Go proper because s390x isn't an officially supported architecture yet.
    76  
    77  ENV PATH /go/bin:$PATH
    78  ENV GOPATH /go:/go/src/github.com/docker/docker/vendor
    79  
    80  # This has been commented out and kept as reference because we don't support compiling with older Go anymore.
    81  # ENV GOFMT_VERSION 1.3.3
    82  # 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
    83  
    84  # TODO update this sha when we upgrade to Go 1.5+
    85  ENV GO_TOOLS_COMMIT 069d2f3bcb68257b627205f0486d6cc69a231ff9
    86  # Grab Go's cover tool for dead-simple code coverage testing
    87  # Grab Go's vet tool for examining go code to find suspicious constructs
    88  # and help prevent errors that the compiler might not catch
    89  RUN git clone https://github.com/golang/tools.git /go/src/golang.org/x/tools \
    90  	&& (cd /go/src/golang.org/x/tools && git checkout -q $GO_TOOLS_COMMIT) \
    91  	&& go install -v golang.org/x/tools/cmd/cover \
    92  	&& go install -v golang.org/x/tools/cmd/vet
    93  # Grab Go's lint tool
    94  ENV GO_LINT_COMMIT f42f5c1c440621302702cb0741e9d2ca547ae80f
    95  RUN git clone https://github.com/golang/lint.git /go/src/github.com/golang/lint \
    96  	&& (cd /go/src/github.com/golang/lint && git checkout -q $GO_LINT_COMMIT) \
    97  	&& go install -v github.com/golang/lint/golint
    98  
    99  
   100  # Install registry
   101  ENV REGISTRY_COMMIT ec87e9b6971d831f0eff752ddb54fb64693e51cd
   102  RUN set -x \
   103  	&& export GOPATH="$(mktemp -d)" \
   104  	&& git clone https://github.com/docker/distribution.git "$GOPATH/src/github.com/docker/distribution" \
   105  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT") \
   106  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   107  		go build -o /usr/local/bin/registry-v2 github.com/docker/distribution/cmd/registry \
   108  	&& rm -rf "$GOPATH"
   109  
   110  # Install notary server
   111  ENV NOTARY_VERSION docker-v1.11-3
   112  RUN set -x \
   113  	&& export GO15VENDOREXPERIMENT=1 \
   114  	&& export GOPATH="$(mktemp -d)" \
   115  	&& git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \
   116  	&& (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \
   117  	&& GOPATH="$GOPATH/src/github.com/docker/notary/vendor:$GOPATH" \
   118  		go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \
   119  	&& rm -rf "$GOPATH"
   120  
   121  # Get the "docker-py" source so we can run their integration tests
   122  ENV DOCKER_PY_COMMIT e2878cbcc3a7eef99917adc1be252800b0e41ece
   123  RUN git clone https://github.com/docker/docker-py.git /docker-py \
   124  	&& cd /docker-py \
   125  	&& git checkout -q $DOCKER_PY_COMMIT \
   126  	&& pip install -r test-requirements.txt
   127  
   128  # Set user.email so crosbymichael's in-container merge commits go smoothly
   129  RUN git config --global user.email 'docker-dummy@example.com'
   130  
   131  # Add an unprivileged user to be used for tests which need it
   132  RUN groupadd -r docker
   133  RUN useradd --create-home --gid docker unprivilegeduser
   134  
   135  VOLUME /var/lib/docker
   136  WORKDIR /go/src/github.com/docker/docker
   137  ENV DOCKER_BUILDTAGS apparmor pkcs11 selinux
   138  
   139  # Let us use a .bashrc file
   140  RUN ln -sfv $PWD/.bashrc ~/.bashrc
   141  
   142  # Register Docker's bash completion.
   143  RUN ln -sv $PWD/contrib/completion/bash/docker /etc/bash_completion.d/docker
   144  
   145  # Get useful and necessary Hub images so we can "docker load" locally instead of pulling
   146  COPY contrib/download-frozen-image-v2.sh /go/src/github.com/docker/docker/contrib/
   147  RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
   148  	s390x/buildpack-deps:jessie@sha256:4d1381224acaca6c4bfe3604de3af6972083a8558a99672cb6989c7541780099 \
   149  	s390x/busybox:latest@sha256:dd61522c983884a66ed72d60301925889028c6d2d5e0220a8fe1d9b4c6a4f01b \
   150  	s390x/debian:jessie@sha256:b74c863400909eff3c5e196cac9bfd1f6333ce47aae6a38398d87d5875da170a \
   151  	s390x/hello-world:latest@sha256:780d80b3a7677c3788c0d5cd9168281320c8d4a6d9183892d8ee5cdd610f5699
   152  # see also "hack/make/.ensure-frozen-images" (which needs to be updated any time this list is)
   153  
   154  # Download man page generator
   155  RUN set -x \
   156  	&& export GOPATH="$(mktemp -d)" \
   157  	&& git clone --depth 1 -b v1.0.4 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
   158  	&& git clone --depth 1 -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
   159  	&& go get -v -d github.com/cpuguy83/go-md2man \
   160  	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
   161  	&& rm -rf "$GOPATH"
   162  
   163  # Download toml validator
   164  ENV TOMLV_COMMIT 9baf8a8a9f2ed20a8e54160840c492f937eeaf9a
   165  RUN set -x \
   166  	&& export GOPATH="$(mktemp -d)" \
   167  	&& git clone https://github.com/BurntSushi/toml.git "$GOPATH/src/github.com/BurntSushi/toml" \
   168  	&& (cd "$GOPATH/src/github.com/BurntSushi/toml" && git checkout -q "$TOMLV_COMMIT") \
   169  	&& go build -v -o /usr/local/bin/tomlv github.com/BurntSushi/toml/cmd/tomlv \
   170  	&& rm -rf "$GOPATH"
   171  
   172  # Build/install the tool for embedding resources in Windows binaries
   173  ENV RSRC_VERSION v2
   174  RUN set -x \
   175  	&& export GOPATH="$(mktemp -d)" \
   176  	&& git clone --depth 1 -b "$RSRC_VERSION" https://github.com/akavel/rsrc.git "$GOPATH/src/github.com/akavel/rsrc" \
   177  	&& go build -v -o /usr/local/bin/rsrc github.com/akavel/rsrc \
   178  	&& rm -rf "$GOPATH"
   179  
   180  # Install runc
   181  ENV RUNC_COMMIT 0c1c615ebd6a15545b6a82ead01d2745ea49b242
   182  RUN set -x \
   183  	&& export GOPATH="$(mktemp -d)" \
   184  	&& git clone git://github.com/opencontainers/runc.git "$GOPATH/src/github.com/opencontainers/runc" \
   185  	&& cd "$GOPATH/src/github.com/opencontainers/runc" \
   186  	&& git checkout -q "$RUNC_COMMIT" \
   187  	&& make static BUILDTAGS="seccomp apparmor selinux" \
   188  	&& cp runc /usr/local/bin/docker-runc
   189  
   190  # Install containerd
   191  ENV CONTAINERD_COMMIT 07c95162cdcead88dfe4ca0ffb3cea02375ec54d
   192  RUN set -x \
   193  	&& export GOPATH="$(mktemp -d)" \
   194  	&& git clone git://github.com/docker/containerd.git "$GOPATH/src/github.com/docker/containerd" \
   195  	&& cd "$GOPATH/src/github.com/docker/containerd" \
   196  	&& git checkout -q "$CONTAINERD_COMMIT" \
   197  	&& make static \
   198  	&& cp bin/containerd /usr/local/bin/docker-containerd \
   199  	&& cp bin/containerd-shim /usr/local/bin/docker-containerd-shim \
   200  	&& cp bin/ctr /usr/local/bin/docker-containerd-ctr
   201  
   202  # Wrap all commands in the "docker-in-docker" script to allow nested containers
   203  ENTRYPOINT ["hack/dind"]
   204  
   205  # Upload docker source
   206  COPY . /go/src/github.com/docker/docker