2013-06-21 19:42:17 -07:00
# This file describes the standard way to build Docker, using docker
2013-09-06 19:58:05 -07:00
#
# Usage:
#
# # Assemble the full dev environment. This is slow the first time.
# docker build -t docker .
#
2013-09-06 20:16:13 -07:00
# # Mount your source in an interactive container for quick testing:
2013-10-31 14:58:43 -07:00
# docker run -v `pwd`:/go/src/github.com/dotcloud/docker -privileged -i -t docker bash
2013-09-06 20:16:13 -07:00
#
2013-09-06 19:58:05 -07:00
# # Run the test suite:
2013-10-31 14:58:43 -07:00
# docker run -privileged docker hack/make.sh test
2013-09-06 19:58:05 -07:00
#
# # Publish a release:
2013-10-31 14:58:43 -07:00
# docker run -privileged \
2013-09-30 13:57:30 -06:00
# -e AWS_S3_BUCKET=baz \
# -e AWS_ACCESS_KEY=foo \
# -e AWS_SECRET_KEY=bar \
# -e GPG_PASSPHRASE=gloubiboulga \
# docker hack/release.sh
#
2013-10-31 14:58:43 -07:00
# Note: Apparmor used to mess with privileged mode, but this is no longer
# the case. Therefore, you don't have to disable it anymore.
#
2013-09-06 19:58:05 -07:00
2013-11-04 15:39:16 -07:00
docker-version 0.6.1
2013-06-21 19:42:17 -07:00
from ubuntu:12.04
maintainer Solomon Hykes <solomon@dotcloud.com>
2013-09-30 13:57:30 -06:00
2013-06-21 19:42:17 -07:00
# Build dependencies
2013-08-06 21:00:50 -07:00
run echo 'deb http://archive.ubuntu.com/ubuntu precise main universe' > /etc/apt/sources.list
run apt-get update
2013-06-21 19:42:17 -07:00
run apt-get install -y -q curl
run apt-get install -y -q git
2013-08-09 16:08:11 -07:00
run apt-get install -y -q mercurial
2013-11-04 15:39:16 -07:00
run apt-get install -y -q build-essential libsqlite3-dev
2013-09-30 13:57:30 -06:00
2013-10-04 19:25:15 -07:00
# Install Go
2013-11-04 21:12:18 -07:00
run curl -s https://go.googlecode.com/files/go1.2rc3.src.tar.gz | tar -v -C /usr/local -xz
2013-10-04 19:25:15 -07:00
env PATH /usr/local/go/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin
2013-09-30 13:57:30 -06:00
env GOPATH /go:/go/src/github.com/dotcloud/docker/vendor
2013-11-04 15:39:16 -07:00
run cd /usr/local/go/src && ./make.bash && go install -ldflags '-w -linkmode external -extldflags "-static -Wl,--unresolved-symbols=ignore-in-shared-libs"' -tags netgo -a std
2013-09-30 13:57:30 -06:00
2013-08-06 21:00:50 -07:00
# Ubuntu stuff
2013-08-23 19:13:30 +03:00
run apt-get install -y -q ruby1.9.3 rubygems libffi-dev
2013-09-30 13:57:30 -06:00
run gem install --no-rdoc --no-ri fpm
2013-08-14 17:02:55 -07:00
run apt-get install -y -q reprepro dpkg-sig
2013-09-30 13:57:30 -06:00
2013-08-06 21:00:50 -07:00
# Install s3cmd 1.0.1 (earlier versions don't support env variables in the config)
run apt-get install -y -q python-pip
run pip install s3cmd
2013-08-12 20:16:08 -07:00
run pip install python-magic
2013-08-09 18:08:06 -07:00
run /bin/echo -e '[default]\naccess_key=$AWS_ACCESS_KEY\nsecret_key=$AWS_SECRET_KEY\n' > /.s3cfg
2013-09-30 13:57:30 -06:00
2013-09-06 19:19:03 -07:00
# Runtime dependencies
run apt-get install -y -q iptables
run apt-get install -y -q lxc
2013-10-15 11:44:56 +02:00
run apt-get install -y -q aufs-tools
2013-09-30 13:57:30 -06:00
2013-11-04 16:11:33 -07:00
# Get lvm2 source for compiling statically
run git clone git://git.fedorahosted.org/git/lvm2.git /usr/local/lvm2 && cd /usr/local/lvm2 && git checkout v2_02_103
# see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
# note: we can't use "git clone -b" above because it requires at least git 1.7.10 to be able to use that on a tag instead of a branch and we only have 1.7.9.5
# Compile and install lvm2
run cd /usr/local/lvm2 && ./configure --enable-static_link && make device-mapper && make install_device-mapper
# see https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
2013-09-06 19:19:03 -07:00
volume /var/lib/docker
workdir /go/src/github.com/dotcloud/docker
2013-09-30 13:57:30 -06:00
2013-09-06 19:19:03 -07:00
# Wrap all commands in the "docker-in-docker" script to allow nested containers
2013-11-04 15:39:16 -07:00
entrypoint ["hack/dind"]
2013-09-30 13:57:30 -06:00
2013-09-06 20:14:03 -07:00
# Upload docker source
2013-11-04 15:39:16 -07:00
add . /go/src/github.com/dotcloud/docker