github.com/brahmaroutu/docker@v1.2.1-0.20160809185609-eb28dde01f16/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: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  # glibc in Debian has a bug specific to s390x that won't be fixed until Debian 8.6 is released
    52  # - https://github.com/docker/docker/issues/24748
    53  # - https://sourceware.org/git/?p=glibc.git;a=commit;h=890b7a4b33d482b5c768ab47d70758b80227e9bc
    54  # - https://sourceware.org/git/?p=glibc.git;a=commit;h=2e807f29595eb5b1e5d0decc6e356a3562ecc58e
    55  RUN echo 'deb http://httpredir.debian.org/debian jessie-proposed-updates main' >> /etc/apt/sources.list.d/pu.list \
    56  	&& apt-get update \
    57  	&& apt-get install -y libc6 \
    58  	&& rm -rf /var/lib/apt/lists/*
    59  
    60  # install seccomp: the version shipped in jessie is too old
    61  ENV SECCOMP_VERSION 2.3.1
    62  RUN set -x \
    63  	&& export SECCOMP_PATH="$(mktemp -d)" \
    64  	&& curl -fsSL "https://github.com/seccomp/libseccomp/releases/download/v${SECCOMP_VERSION}/libseccomp-${SECCOMP_VERSION}.tar.gz" \
    65  		| tar -xzC "$SECCOMP_PATH" --strip-components=1 \
    66  	&& ( \
    67  		cd "$SECCOMP_PATH" \
    68  		&& ./configure --prefix=/usr/local \
    69  		&& make \
    70  		&& make install \
    71  		&& ldconfig \
    72  	) \
    73  	&& rm -rf "$SECCOMP_PATH"
    74  
    75  # Get lvm2 source for compiling statically
    76  ENV LVM2_VERSION 2.02.103
    77  RUN mkdir -p /usr/local/lvm2 \
    78  	&& curl -fsSL "https://mirrors.kernel.org/sourceware/lvm2/LVM2.${LVM2_VERSION}.tgz" \
    79  		| tar -xzC /usr/local/lvm2 --strip-components=1
    80  # see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
    81  
    82  # fix platform enablement in lvm2 to support s390x properly
    83  RUN set -e \
    84  	&& for f in config.guess config.sub; do \
    85  		curl -fsSL -o "/usr/local/lvm2/autoconf/$f" "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=$f;hb=HEAD"; \
    86  	done
    87  # "arch.c:78:2: error: #error the arch code needs to know about your machine type"
    88  
    89  # Compile and install lvm2
    90  RUN cd /usr/local/lvm2 \
    91  	&& ./configure \
    92  		--build="$(gcc -print-multiarch)" \
    93  		--enable-static_link \
    94  	&& make device-mapper \
    95  	&& make install_device-mapper
    96  # see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
    97  
    98  # Note: Go comes from the base image (gccgo, specifically)
    99  # We can't compile Go proper because s390x isn't an officially supported architecture yet.
   100  
   101  ENV PATH /go/bin:$PATH
   102  ENV GOPATH /go:/go/src/github.com/docker/docker/vendor
   103  
   104  # This has been commented out and kept as reference because we don't support compiling with older Go anymore.
   105  # ENV GOFMT_VERSION 1.3.3
   106  # 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
   107  
   108  # TODO update this sha when we upgrade to Go 1.5+
   109  ENV GO_TOOLS_COMMIT 069d2f3bcb68257b627205f0486d6cc69a231ff9
   110  # Grab Go's cover tool for dead-simple code coverage testing
   111  # Grab Go's vet tool for examining go code to find suspicious constructs
   112  # and help prevent errors that the compiler might not catch
   113  RUN git clone https://github.com/golang/tools.git /go/src/golang.org/x/tools \
   114  	&& (cd /go/src/golang.org/x/tools && git checkout -q $GO_TOOLS_COMMIT) \
   115  	&& go install -v golang.org/x/tools/cmd/cover \
   116  	&& go install -v golang.org/x/tools/cmd/vet
   117  # Grab Go's lint tool
   118  ENV GO_LINT_COMMIT f42f5c1c440621302702cb0741e9d2ca547ae80f
   119  RUN git clone https://github.com/golang/lint.git /go/src/github.com/golang/lint \
   120  	&& (cd /go/src/github.com/golang/lint && git checkout -q $GO_LINT_COMMIT) \
   121  	&& go install -v github.com/golang/lint/golint
   122  
   123  
   124  # Install two versions of the registry. The first is an older version that
   125  # only supports schema1 manifests. The second is a newer version that supports
   126  # both. This allows integration-cli tests to cover push/pull with both schema1
   127  # and schema2 manifests.
   128  ENV REGISTRY_COMMIT_SCHEMA1 ec87e9b6971d831f0eff752ddb54fb64693e51cd
   129  ENV REGISTRY_COMMIT 47a064d4195a9b56133891bbb13620c3ac83a827
   130  RUN set -x \
   131  	&& export GOPATH="$(mktemp -d)" \
   132  	&& git clone https://github.com/docker/distribution.git "$GOPATH/src/github.com/docker/distribution" \
   133  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT") \
   134  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   135  		go build -o /usr/local/bin/registry-v2 github.com/docker/distribution/cmd/registry \
   136  	&& (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT_SCHEMA1") \
   137  	&& GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \
   138  		go build -o /usr/local/bin/registry-v2-schema1 github.com/docker/distribution/cmd/registry \
   139  	&& rm -rf "$GOPATH"
   140  
   141  # Install notary and notary-server
   142  #
   143  # Note: We have to explicitly set GO15VENDOREXPERIMENT=0 because gccgo does not
   144  # support vendoring: https://github.com/golang/go/issues/15628
   145  ENV NOTARY_VERSION v0.3.0
   146  RUN set -x \
   147  	&& export GO15VENDOREXPERIMENT=0 \
   148  	&& export GOPATH="$(mktemp -d)" \
   149  	&& git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \
   150  	&& (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION" && ln -s . vendor/src) \
   151  	&& GOPATH="$GOPATH/src/github.com/docker/notary/vendor:$GOPATH" \
   152  		go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \
   153  	&& GOPATH="$GOPATH/src/github.com/docker/notary/vendor:$GOPATH" \
   154  		go build -o /usr/local/bin/notary github.com/docker/notary/cmd/notary \
   155  	&& rm -rf "$GOPATH"
   156  
   157  # Get the "docker-py" source so we can run their integration tests
   158  ENV DOCKER_PY_COMMIT 7befe694bd21e3c54bb1d7825270ea4bd6864c13
   159  RUN git clone https://github.com/docker/docker-py.git /docker-py \
   160  	&& cd /docker-py \
   161  	&& git checkout -q $DOCKER_PY_COMMIT \
   162  	&& pip install -r test-requirements.txt
   163  
   164  # Set user.email so crosbymichael's in-container merge commits go smoothly
   165  RUN git config --global user.email 'docker-dummy@example.com'
   166  
   167  # Add an unprivileged user to be used for tests which need it
   168  RUN groupadd -r docker
   169  RUN useradd --create-home --gid docker unprivilegeduser
   170  
   171  VOLUME /var/lib/docker
   172  WORKDIR /go/src/github.com/docker/docker
   173  ENV DOCKER_BUILDTAGS apparmor selinux seccomp
   174  
   175  # Let us use a .bashrc file
   176  RUN ln -sfv $PWD/.bashrc ~/.bashrc
   177  
   178  # Register Docker's bash completion.
   179  RUN ln -sv $PWD/contrib/completion/bash/docker /etc/bash_completion.d/docker
   180  
   181  # Get useful and necessary Hub images so we can "docker load" locally instead of pulling
   182  COPY contrib/download-frozen-image-v2.sh /go/src/github.com/docker/docker/contrib/
   183  RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
   184  	s390x/buildpack-deps:jessie@sha256:4d1381224acaca6c4bfe3604de3af6972083a8558a99672cb6989c7541780099 \
   185  	s390x/busybox:latest@sha256:dd61522c983884a66ed72d60301925889028c6d2d5e0220a8fe1d9b4c6a4f01b \
   186  	s390x/debian:jessie@sha256:b74c863400909eff3c5e196cac9bfd1f6333ce47aae6a38398d87d5875da170a \
   187  	s390x/hello-world:latest@sha256:780d80b3a7677c3788c0d5cd9168281320c8d4a6d9183892d8ee5cdd610f5699
   188  # see also "hack/make/.ensure-frozen-images" (which needs to be updated any time this list is)
   189  
   190  # Download man page generator
   191  RUN set -x \
   192  	&& export GOPATH="$(mktemp -d)" \
   193  	&& git clone --depth 1 -b v1.0.5 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
   194  	&& git clone --depth 1 -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
   195  	&& go get -v -d github.com/cpuguy83/go-md2man \
   196  	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
   197  	&& rm -rf "$GOPATH"
   198  
   199  # Download toml validator
   200  ENV TOMLV_COMMIT 9baf8a8a9f2ed20a8e54160840c492f937eeaf9a
   201  RUN set -x \
   202  	&& export GOPATH="$(mktemp -d)" \
   203  	&& git clone https://github.com/BurntSushi/toml.git "$GOPATH/src/github.com/BurntSushi/toml" \
   204  	&& (cd "$GOPATH/src/github.com/BurntSushi/toml" && git checkout -q "$TOMLV_COMMIT") \
   205  	&& go build -v -o /usr/local/bin/tomlv github.com/BurntSushi/toml/cmd/tomlv \
   206  	&& rm -rf "$GOPATH"
   207  
   208  # Install runc
   209  ENV RUNC_COMMIT cc29e3dded8e27ba8f65738f40d251c885030a28
   210  RUN set -x \
   211  	&& export GOPATH="$(mktemp -d)" \
   212  	&& git clone https://github.com/opencontainers/runc.git "$GOPATH/src/github.com/opencontainers/runc" \
   213  	&& cd "$GOPATH/src/github.com/opencontainers/runc" \
   214  	&& git checkout -q "$RUNC_COMMIT" \
   215  	&& make static BUILDTAGS="seccomp apparmor selinux" \
   216  	&& cp runc /usr/local/bin/docker-runc \
   217  	&& rm -rf "$GOPATH"
   218  
   219  # Install containerd
   220  ENV CONTAINERD_COMMIT 0ac3cd1be170d180b2baed755e8f0da547ceb267
   221  RUN set -x \
   222  	&& export GOPATH="$(mktemp -d)" \
   223  	&& git clone https://github.com/docker/containerd.git "$GOPATH/src/github.com/docker/containerd" \
   224  	&& cd "$GOPATH/src/github.com/docker/containerd" \
   225  	&& git checkout -q "$CONTAINERD_COMMIT" \
   226  	&& make static \
   227  	&& cp bin/containerd /usr/local/bin/docker-containerd \
   228  	&& cp bin/containerd-shim /usr/local/bin/docker-containerd-shim \
   229  	&& cp bin/ctr /usr/local/bin/docker-containerd-ctr \
   230  	&& rm -rf "$GOPATH"
   231  
   232  # Wrap all commands in the "docker-in-docker" script to allow nested containers
   233  ENTRYPOINT ["hack/dind"]
   234  
   235  # Upload docker source
   236  COPY . /go/src/github.com/docker/docker