Dockerfile 3.5 KB

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