2013-06-21 22:42:17 -04:00
|
|
|
# This file describes the standard way to build Docker, using docker
|
2013-09-06 22:58:05 -04:00
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
#
|
|
|
|
# # Assemble the full dev environment. This is slow the first time.
|
|
|
|
# docker build -t docker .
|
|
|
|
# # Apparmor messes with privileged mode: disable it
|
|
|
|
# /etc/init.d/apparmor stop ; /etc/init.d/apparmor teardown
|
|
|
|
#
|
2013-09-06 23:16:13 -04:00
|
|
|
# # Mount your source in an interactive container for quick testing:
|
|
|
|
# docker run -v `pwd`:/go/src/github.com/dotcloud/docker -privileged -lxc-conf=lxc.aa_profile=unconfined -i -t docker bash
|
|
|
|
#
|
|
|
|
#
|
2013-09-06 22:58:05 -04:00
|
|
|
# # Run the test suite:
|
|
|
|
# docker run -privileged -lxc-conf=lxc.aa_profile=unconfined docker go test -v
|
|
|
|
#
|
|
|
|
# # Publish a release:
|
|
|
|
# docker run -privileged -lxc-conf=lxc.aa_profile=unconfined \
|
2013-09-30 15:57:30 -04: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-09-06 22:58:05 -04:00
|
|
|
|
2013-09-06 22:19:03 -04:00
|
|
|
docker-version 0.6.1
|
2013-10-02 23:18:15 -04:00
|
|
|
from ubuntu:12.10
|
|
|
|
maintainer Solomon Hykes <solomon@dotcloud.com>
|
2013-09-30 15:57:30 -04:00
|
|
|
|
2013-06-21 22:42:17 -04:00
|
|
|
# Build dependencies
|
2013-10-02 23:18:15 -04:00
|
|
|
run apt-get update
|
|
|
|
run apt-get install -y -q curl
|
|
|
|
run apt-get install -y -q git
|
|
|
|
run apt-get install -y -q mercurial
|
|
|
|
run apt-get install -y -q build-essential
|
2013-09-30 15:57:30 -04:00
|
|
|
|
|
|
|
# Install Go from source (for eventual cross-compiling)
|
2013-10-02 23:18:15 -04:00
|
|
|
run curl -s https://go.googlecode.com/files/go1.2rc1.src.tar.gz | tar -v -C / -xz && mv /go /goroot
|
|
|
|
run cd /goroot/src && ./make.bash
|
|
|
|
env GOROOT /goroot
|
|
|
|
env PATH $PATH:/goroot/bin
|
|
|
|
env GOPATH /go:/go/src/github.com/dotcloud/docker/vendor
|
2013-09-30 15:57:30 -04:00
|
|
|
|
2013-09-30 23:14:54 -04:00
|
|
|
# Create Go cache with tag netgo (for static compilation of Go while preserving CGO support)
|
2013-10-02 23:18:15 -04:00
|
|
|
run go install -ldflags '-w -linkmode external -extldflags "-static -Wl,--unresolved-symbols=ignore-in-shared-libs"' -tags netgo -a std
|
2013-09-30 23:14:54 -04:00
|
|
|
|
|
|
|
# Get lvm2 source for compiling statically
|
2013-10-02 23:18:15 -04:00
|
|
|
run git clone git://git.fedorahosted.org/git/lvm2.git /lvm2
|
|
|
|
run cd /lvm2 && git checkout v2_02_102
|
|
|
|
|
2013-09-30 23:14:54 -04:00
|
|
|
# can't use git clone -b because it's not supported by git versions before 1.7.10
|
|
|
|
run cd /lvm2 && ./configure --enable-static_link && make && make install_device-mapper
|
|
|
|
# see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
|
|
|
|
|
2013-08-07 00:00:50 -04:00
|
|
|
# Ubuntu stuff
|
2013-10-02 23:18:15 -04:00
|
|
|
run apt-get install -y -q ruby1.9.3 rubygems libffi-dev
|
|
|
|
run gem install --no-rdoc --no-ri fpm
|
|
|
|
run apt-get install -y -q reprepro dpkg-sig
|
2013-09-30 15:57:30 -04:00
|
|
|
|
2013-08-07 00:00:50 -04:00
|
|
|
# Install s3cmd 1.0.1 (earlier versions don't support env variables in the config)
|
2013-10-02 23:18:15 -04:00
|
|
|
run apt-get install -y -q python-pip
|
|
|
|
run pip install s3cmd
|
|
|
|
run pip install python-magic
|
|
|
|
run /bin/echo -e '[default]\naccess_key=$AWS_ACCESS_KEY\nsecret_key=$AWS_SECRET_KEY\n' > /.s3cfg
|
2013-09-30 15:57:30 -04:00
|
|
|
|
2013-09-06 22:19:03 -04:00
|
|
|
# Runtime dependencies
|
2013-10-02 23:18:15 -04:00
|
|
|
run apt-get install -y -q iptables
|
|
|
|
run dpkg-divert --local --rename --add /sbin/initctl && \
|
|
|
|
ln -s /bin/true /sbin/initctl && \
|
|
|
|
apt-get install -y -q lxc
|
2013-09-30 15:57:30 -04:00
|
|
|
|
2013-10-02 23:18:15 -04:00
|
|
|
volume /var/lib/docker
|
|
|
|
workdir /go/src/github.com/dotcloud/docker
|
2013-09-30 15:57:30 -04:00
|
|
|
|
2013-09-06 22:19:03 -04:00
|
|
|
# Wrap all commands in the "docker-in-docker" script to allow nested containers
|
|
|
|
entrypoint ["hack/dind"]
|
2013-09-30 15:57:30 -04:00
|
|
|
|
2013-09-06 23:14:03 -04:00
|
|
|
# Upload docker source
|
2013-10-02 23:18:15 -04:00
|
|
|
add . /go/src/github.com/dotcloud/docker
|
|
|
|
|