Dockerfile 3.5 KB

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