Dockerfile 3.5 KB

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