2013-06-22 02:42:17 +00:00
|
|
|
# This file describes the standard way to build Docker, using docker
|
|
|
|
docker-version 0.4.2
|
|
|
|
from ubuntu:12.04
|
|
|
|
maintainer Solomon Hykes <solomon@dotcloud.com>
|
|
|
|
# Build dependencies
|
2013-08-07 04:00:50 +00:00
|
|
|
run echo 'deb http://archive.ubuntu.com/ubuntu precise main universe' > /etc/apt/sources.list
|
|
|
|
run apt-get update
|
2013-06-22 02:42:17 +00:00
|
|
|
run apt-get install -y -q curl
|
|
|
|
run apt-get install -y -q git
|
2013-08-09 23:08:11 +00:00
|
|
|
run apt-get install -y -q mercurial
|
2013-06-22 02:42:17 +00:00
|
|
|
# Install Go
|
2013-08-14 00:25:12 +00:00
|
|
|
run curl -s https://go.googlecode.com/files/go1.1.2.linux-amd64.tar.gz | tar -v -C /usr/local -xz
|
2013-06-22 02:42:17 +00:00
|
|
|
env PATH /usr/local/go/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin
|
|
|
|
env GOPATH /go
|
|
|
|
env CGO_ENABLED 0
|
|
|
|
run cd /tmp && echo 'package main' > t.go && go test -a -i -v
|
2013-08-07 04:00:50 +00:00
|
|
|
# Ubuntu stuff
|
2013-08-23 16:13:30 +00:00
|
|
|
run apt-get install -y -q ruby1.9.3 rubygems libffi-dev
|
2013-08-07 04:00:50 +00:00
|
|
|
run gem install fpm
|
2013-08-15 00:02:55 +00:00
|
|
|
run apt-get install -y -q reprepro dpkg-sig
|
2013-08-07 04:00:50 +00: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-13 03:16:08 +00:00
|
|
|
run pip install python-magic
|
2013-08-10 01:08:06 +00:00
|
|
|
run /bin/echo -e '[default]\naccess_key=$AWS_ACCESS_KEY\nsecret_key=$AWS_SECRET_KEY\n' > /.s3cfg
|
2013-06-22 02:42:17 +00:00
|
|
|
# Download dependencies
|
|
|
|
run PKG=github.com/kr/pty REV=27435c699; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV
|
|
|
|
run PKG=github.com/gorilla/context/ REV=708054d61e5; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV
|
|
|
|
run PKG=github.com/gorilla/mux/ REV=9b36453141c; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV
|
2013-09-03 18:30:32 +00:00
|
|
|
run PKG=github.com/dotcloud/tar/ REV=e5ea6bb21a3294; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV
|
2013-08-09 23:08:11 +00:00
|
|
|
run PKG=code.google.com/p/go.net/ REV=84a4013f96e0; hg clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && hg checkout $REV
|
2013-06-22 02:42:17 +00:00
|
|
|
# Upload docker source
|
|
|
|
add . /go/src/github.com/dotcloud/docker
|
2013-08-13 03:16:08 +00:00
|
|
|
run ln -s /go/src/github.com/dotcloud/docker /src
|
2013-06-22 02:42:17 +00:00
|
|
|
# Build the binary
|
2013-08-16 23:05:16 +00:00
|
|
|
run cd /go/src/github.com/dotcloud/docker && hack/release/make.sh
|
|
|
|
cmd cd /go/src/github.com/dotcloud/docker && hack/release/release.sh
|