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