github.com/flavio/docker@v0.1.3-0.20170117145210-f63d1a6eec47/Dockerfile (about) 1 # This file describes the standard way to build Docker, using docker 2 # 3 # Usage: 4 # 5 # # Assemble the full dev environment. This is slow the first time. 6 # docker build -t docker . 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 # # Publish a release: 15 # docker run --privileged \ 16 # -e AWS_S3_BUCKET=baz \ 17 # -e AWS_ACCESS_KEY=foo \ 18 # -e AWS_SECRET_KEY=bar \ 19 # -e GPG_PASSPHRASE=gloubiboulga \ 20 # docker hack/release.sh 21 # 22 # Note: AppArmor used to mess with privileged mode, but this is no longer 23 # the case. Therefore, you don't have to disable it anymore. 24 # 25 26 FROM debian:jessie 27 28 # allow replacing httpredir or deb mirror 29 ARG APT_MIRROR=deb.debian.org 30 RUN sed -ri "s/(httpredir|deb).debian.org/$APT_MIRROR/g" /etc/apt/sources.list 31 32 # Add zfs ppa 33 COPY keys/launchpad-ppa-zfs.asc /go/src/github.com/docker/docker/keys/ 34 RUN apt-key add /go/src/github.com/docker/docker/keys/launchpad-ppa-zfs.asc 35 RUN echo deb http://ppa.launchpad.net/zfs-native/stable/ubuntu trusty main > /etc/apt/sources.list.d/zfs.list 36 37 # Packaged dependencies 38 RUN apt-get update && apt-get install -y \ 39 apparmor \ 40 apt-utils \ 41 aufs-tools \ 42 automake \ 43 bash-completion \ 44 binutils-mingw-w64 \ 45 bsdmainutils \ 46 btrfs-tools \ 47 build-essential \ 48 clang \ 49 cmake \ 50 createrepo \ 51 curl \ 52 dpkg-sig \ 53 gcc-mingw-w64 \ 54 git \ 55 iptables \ 56 jq \ 57 less \ 58 libapparmor-dev \ 59 libcap-dev \ 60 libltdl-dev \ 61 libnl-3-dev \ 62 libprotobuf-c0-dev \ 63 libprotobuf-dev \ 64 libsqlite3-dev \ 65 libsystemd-journal-dev \ 66 libtool \ 67 libzfs-dev \ 68 mercurial \ 69 net-tools \ 70 pkg-config \ 71 protobuf-compiler \ 72 protobuf-c-compiler \ 73 python-dev \ 74 python-mock \ 75 python-pip \ 76 python-websocket \ 77 tar \ 78 ubuntu-zfs \ 79 vim \ 80 vim-common \ 81 xfsprogs \ 82 zip \ 83 --no-install-recommends \ 84 && pip install awscli==1.10.15 85 # Get lvm2 source for compiling statically 86 ENV LVM2_VERSION 2.02.103 87 RUN mkdir -p /usr/local/lvm2 \ 88 && curl -fsSL "https://mirrors.kernel.org/sourceware/lvm2/LVM2.${LVM2_VERSION}.tgz" \ 89 | tar -xzC /usr/local/lvm2 --strip-components=1 90 # See https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags 91 92 # Compile and install lvm2 93 RUN cd /usr/local/lvm2 \ 94 && ./configure \ 95 --build="$(gcc -print-multiarch)" \ 96 --enable-static_link \ 97 && make device-mapper \ 98 && make install_device-mapper 99 # See https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL 100 101 # Configure the container for OSX cross compilation 102 ENV OSX_SDK MacOSX10.11.sdk 103 ENV OSX_CROSS_COMMIT a9317c18a3a457ca0a657f08cc4d0d43c6cf8953 104 RUN set -x \ 105 && export OSXCROSS_PATH="/osxcross" \ 106 && git clone https://github.com/tpoechtrager/osxcross.git $OSXCROSS_PATH \ 107 && ( cd $OSXCROSS_PATH && git checkout -q $OSX_CROSS_COMMIT) \ 108 && curl -sSL https://s3.dockerproject.org/darwin/v2/${OSX_SDK}.tar.xz -o "${OSXCROSS_PATH}/tarballs/${OSX_SDK}.tar.xz" \ 109 && UNATTENDED=yes OSX_VERSION_MIN=10.6 ${OSXCROSS_PATH}/build.sh 110 ENV PATH /osxcross/target/bin:$PATH 111 112 # Install seccomp: the version shipped in trusty is too old 113 ENV SECCOMP_VERSION 2.3.1 114 RUN set -x \ 115 && export SECCOMP_PATH="$(mktemp -d)" \ 116 && curl -fsSL "https://github.com/seccomp/libseccomp/releases/download/v${SECCOMP_VERSION}/libseccomp-${SECCOMP_VERSION}.tar.gz" \ 117 | tar -xzC "$SECCOMP_PATH" --strip-components=1 \ 118 && ( \ 119 cd "$SECCOMP_PATH" \ 120 && ./configure --prefix=/usr/local \ 121 && make \ 122 && make install \ 123 && ldconfig \ 124 ) \ 125 && rm -rf "$SECCOMP_PATH" 126 127 # Install Go 128 # IMPORTANT: If the version of Go is updated, the Windows to Linux CI machines 129 # will need updating, to avoid errors. Ping #docker-maintainers on IRC 130 # with a heads-up. 131 ENV GO_VERSION 1.7.4 132 RUN curl -fsSL "https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz" \ 133 | tar -xzC /usr/local 134 135 ENV PATH /go/bin:/usr/local/go/bin:$PATH 136 ENV GOPATH /go 137 138 # Compile Go for cross compilation 139 ENV DOCKER_CROSSPLATFORMS \ 140 linux/386 linux/arm \ 141 darwin/amd64 \ 142 freebsd/amd64 freebsd/386 freebsd/arm \ 143 windows/amd64 windows/386 \ 144 solaris/amd64 145 146 # Dependency for golint 147 ENV GO_TOOLS_COMMIT 823804e1ae08dbb14eb807afc7db9993bc9e3cc3 148 RUN git clone https://github.com/golang/tools.git /go/src/golang.org/x/tools \ 149 && (cd /go/src/golang.org/x/tools && git checkout -q $GO_TOOLS_COMMIT) 150 151 # Grab Go's lint tool 152 ENV GO_LINT_COMMIT 32a87160691b3c96046c0c678fe57c5bef761456 153 RUN git clone https://github.com/golang/lint.git /go/src/github.com/golang/lint \ 154 && (cd /go/src/github.com/golang/lint && git checkout -q $GO_LINT_COMMIT) \ 155 && go install -v github.com/golang/lint/golint 156 157 # Install CRIU for checkpoint/restore support 158 ENV CRIU_VERSION 2.9 159 RUN mkdir -p /usr/src/criu \ 160 && curl -sSL https://github.com/xemul/criu/archive/v${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 \ 161 && cd /usr/src/criu \ 162 && make \ 163 && make install-criu 164 165 # Install two versions of the registry. The first is an older version that 166 # only supports schema1 manifests. The second is a newer version that supports 167 # both. This allows integration-cli tests to cover push/pull with both schema1 168 # and schema2 manifests. 169 ENV REGISTRY_COMMIT_SCHEMA1 ec87e9b6971d831f0eff752ddb54fb64693e51cd 170 ENV REGISTRY_COMMIT 47a064d4195a9b56133891bbb13620c3ac83a827 171 RUN set -x \ 172 && export GOPATH="$(mktemp -d)" \ 173 && git clone https://github.com/docker/distribution.git "$GOPATH/src/github.com/docker/distribution" \ 174 && (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT") \ 175 && GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \ 176 go build -o /usr/local/bin/registry-v2 github.com/docker/distribution/cmd/registry \ 177 && (cd "$GOPATH/src/github.com/docker/distribution" && git checkout -q "$REGISTRY_COMMIT_SCHEMA1") \ 178 && GOPATH="$GOPATH/src/github.com/docker/distribution/Godeps/_workspace:$GOPATH" \ 179 go build -o /usr/local/bin/registry-v2-schema1 github.com/docker/distribution/cmd/registry \ 180 && rm -rf "$GOPATH" 181 182 # Install notary and notary-server 183 ENV NOTARY_VERSION v0.5.0 184 RUN set -x \ 185 && export GOPATH="$(mktemp -d)" \ 186 && git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \ 187 && (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \ 188 && GOPATH="$GOPATH/src/github.com/docker/notary/vendor:$GOPATH" \ 189 go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \ 190 && GOPATH="$GOPATH/src/github.com/docker/notary/vendor:$GOPATH" \ 191 go build -o /usr/local/bin/notary github.com/docker/notary/cmd/notary \ 192 && rm -rf "$GOPATH" 193 194 # Get the "docker-py" source so we can run their integration tests 195 ENV DOCKER_PY_COMMIT e2655f658408f9ad1f62abdef3eb6ed43c0cf324 196 RUN git clone https://github.com/docker/docker-py.git /docker-py \ 197 && cd /docker-py \ 198 && git checkout -q $DOCKER_PY_COMMIT \ 199 && pip install -r test-requirements.txt 200 201 # Install yamllint for validating swagger.yaml 202 RUN pip install yamllint==1.5.0 203 204 # Install go-swagger for validating swagger.yaml 205 ENV GO_SWAGGER_COMMIT c28258affb0b6251755d92489ef685af8d4ff3eb 206 RUN git clone https://github.com/go-swagger/go-swagger.git /go/src/github.com/go-swagger/go-swagger \ 207 && (cd /go/src/github.com/go-swagger/go-swagger && git checkout -q $GO_SWAGGER_COMMIT) \ 208 && go install -v github.com/go-swagger/go-swagger/cmd/swagger 209 210 # Set user.email so crosbymichael's in-container merge commits go smoothly 211 RUN git config --global user.email 'docker-dummy@example.com' 212 213 # Add an unprivileged user to be used for tests which need it 214 RUN groupadd -r docker 215 RUN useradd --create-home --gid docker unprivilegeduser 216 217 VOLUME /var/lib/docker 218 WORKDIR /go/src/github.com/docker/docker 219 ENV DOCKER_BUILDTAGS apparmor pkcs11 seccomp selinux 220 221 # Let us use a .bashrc file 222 RUN ln -sfv $PWD/.bashrc ~/.bashrc 223 # Add integration helps to bashrc 224 RUN echo "source $PWD/hack/make/.integration-test-helpers" >> /etc/bash.bashrc 225 226 # Register Docker's bash completion. 227 RUN ln -sv $PWD/contrib/completion/bash/docker /etc/bash_completion.d/docker 228 229 # Get useful and necessary Hub images so we can "docker load" locally instead of pulling 230 COPY contrib/download-frozen-image-v2.sh /go/src/github.com/docker/docker/contrib/ 231 RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \ 232 buildpack-deps:jessie@sha256:25785f89240fbcdd8a74bdaf30dd5599a9523882c6dfc567f2e9ef7cf6f79db6 \ 233 busybox:latest@sha256:e4f93f6ed15a0cdd342f5aae387886fba0ab98af0a102da6276eaf24d6e6ade0 \ 234 debian:jessie@sha256:f968f10b4b523737e253a97eac59b0d1420b5c19b69928d35801a6373ffe330e \ 235 hello-world:latest@sha256:8be990ef2aeb16dbcb9271ddfe2610fa6658d13f6dfb8bc72074cc1ca36966a7 236 # See also "hack/make/.ensure-frozen-images" (which needs to be updated any time this list is) 237 238 # Install tomlv, vndr, runc, containerd, tini, docker-proxy 239 # Please edit hack/dockerfile/install-binaries.sh to update them. 240 COPY hack/dockerfile/binaries-commits /tmp/binaries-commits 241 COPY hack/dockerfile/install-binaries.sh /tmp/install-binaries.sh 242 RUN /tmp/install-binaries.sh tomlv vndr runc containerd tini proxy bindata 243 244 # Wrap all commands in the "docker-in-docker" script to allow nested containers 245 ENTRYPOINT ["hack/dind"] 246 247 # Upload docker source 248 COPY . /go/src/github.com/docker/docker