github.com/ralexstokes/docker@v1.6.2/builder/parser/testfiles/docker/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 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 ubuntu:14.04 27 MAINTAINER Tianon Gravi <admwiggin@gmail.com> (@tianon) 28 29 # Packaged dependencies 30 RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yq \ 31 apt-utils \ 32 aufs-tools \ 33 automake \ 34 btrfs-tools \ 35 build-essential \ 36 curl \ 37 dpkg-sig \ 38 git \ 39 iptables \ 40 libapparmor-dev \ 41 libcap-dev \ 42 libsqlite3-dev \ 43 lxc=1.0* \ 44 mercurial \ 45 pandoc \ 46 parallel \ 47 reprepro \ 48 ruby1.9.1 \ 49 ruby1.9.1-dev \ 50 s3cmd=1.1.0* \ 51 --no-install-recommends 52 53 # Get lvm2 source for compiling statically 54 RUN git clone --no-checkout https://git.fedorahosted.org/git/lvm2.git /usr/local/lvm2 && cd /usr/local/lvm2 && git checkout -q v2_02_103 55 # see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags 56 # note: we don't use "git clone -b" above because it then spews big nasty warnings about 'detached HEAD' state that we can't silence as easily as we can silence them using "git checkout" directly 57 58 # Compile and install lvm2 59 RUN cd /usr/local/lvm2 && ./configure --enable-static_link && make device-mapper && make install_device-mapper 60 # see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL 61 62 # Install Go 63 RUN curl -sSL https://golang.org/dl/go1.3.src.tar.gz | tar -v -C /usr/local -xz 64 ENV PATH /usr/local/go/bin:$PATH 65 ENV GOPATH /go:/go/src/github.com/docker/docker/vendor 66 RUN cd /usr/local/go/src && ./make.bash --no-clean 2>&1 67 68 # Compile Go for cross compilation 69 ENV DOCKER_CROSSPLATFORMS \ 70 linux/386 linux/arm \ 71 darwin/amd64 darwin/386 \ 72 freebsd/amd64 freebsd/386 freebsd/arm 73 # (set an explicit GOARM of 5 for maximum compatibility) 74 ENV GOARM 5 75 RUN cd /usr/local/go/src && bash -xc 'for platform in $DOCKER_CROSSPLATFORMS; do GOOS=${platform%/*} GOARCH=${platform##*/} ./make.bash --no-clean 2>&1; done' 76 77 # Grab Go's cover tool for dead-simple code coverage testing 78 RUN go get golang.org/x/tools/cmd/cover 79 80 # TODO replace FPM with some very minimal debhelper stuff 81 RUN gem install --no-rdoc --no-ri fpm --version 1.0.2 82 83 # Get the "busybox" image source so we can build locally instead of pulling 84 RUN git clone -b buildroot-2014.02 https://github.com/jpetazzo/docker-busybox.git /docker-busybox 85 86 # Setup s3cmd config 87 RUN /bin/echo -e '[default]\naccess_key=$AWS_ACCESS_KEY\nsecret_key=$AWS_SECRET_KEY' > /.s3cfg 88 89 # Set user.email so crosbymichael's in-container merge commits go smoothly 90 RUN git config --global user.email 'docker-dummy@example.com' 91 92 # Add an unprivileged user to be used for tests which need it 93 RUN groupadd -r docker 94 RUN useradd --create-home --gid docker unprivilegeduser 95 96 VOLUME /var/lib/docker 97 WORKDIR /go/src/github.com/docker/docker 98 ENV DOCKER_BUILDTAGS apparmor selinux 99 100 # Wrap all commands in the "docker-in-docker" script to allow nested containers 101 ENTRYPOINT ["hack/dind"] 102 103 # Upload docker source 104 COPY . /go/src/github.com/docker/docker