2013-06-21 22:42:17 -04: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 00:00:50 -04:00
|
|
|
run echo 'deb http://archive.ubuntu.com/ubuntu precise main universe' > /etc/apt/sources.list
|
|
|
|
run apt-get update
|
2013-06-21 22:42:17 -04:00
|
|
|
run apt-get install -y -q curl
|
|
|
|
run apt-get install -y -q git
|
2013-08-09 19:08:11 -04:00
|
|
|
run apt-get install -y -q mercurial
|
2013-06-21 22:42:17 -04:00
|
|
|
# Install Go
|
2013-08-13 20:25:12 -04:00
|
|
|
run curl -s https://go.googlecode.com/files/go1.1.2.linux-amd64.tar.gz | tar -v -C /usr/local -xz
|
2013-06-21 22:42:17 -04: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 00:00:50 -04:00
|
|
|
# Ubuntu stuff
|
|
|
|
run apt-get install -y -q ruby1.9.3 rubygems
|
|
|
|
run gem install fpm
|
2013-08-14 20:02:55 -04:00
|
|
|
run apt-get install -y -q reprepro dpkg-sig
|
2013-08-07 00:00:50 -04: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 23:16:08 -04:00
|
|
|
run pip install python-magic
|
2013-08-09 21:08:06 -04:00
|
|
|
run /bin/echo -e '[default]\naccess_key=$AWS_ACCESS_KEY\nsecret_key=$AWS_SECRET_KEY\n' > /.s3cfg
|
2013-06-21 22:42:17 -04: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-08-12 18:42:29 -04:00
|
|
|
run PKG=github.com/dotcloud/tar/ REV=d06045a6d9; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV
|
2013-08-12 00:22:33 -04:00
|
|
|
# Docker requires code.google.com/p/go.net/websocket
|
|
|
|
run apt-get install -y -q mercurial
|
2013-08-09 19:08:11 -04: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-21 22:42:17 -04:00
|
|
|
# Upload docker source
|
|
|
|
add . /go/src/github.com/dotcloud/docker
|
2013-08-12 23:16:08 -04:00
|
|
|
run ln -s /go/src/github.com/dotcloud/docker /src
|
2013-06-21 22:42:17 -04:00
|
|
|
# Build the binary
|
2013-08-16 19:05:16 -04: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
|