mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
35 lines
1.8 KiB
Docker
35 lines
1.8 KiB
Docker
# 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
|
|
run echo 'deb http://archive.ubuntu.com/ubuntu precise main universe' > /etc/apt/sources.list
|
|
run apt-get update
|
|
run apt-get install -y -q curl
|
|
run apt-get install -y -q git
|
|
# Install Go
|
|
run curl -s https://go.googlecode.com/files/go1.1.1.linux-amd64.tar.gz | tar -v -C /usr/local -xz
|
|
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
|
|
# Ubuntu stuff
|
|
run apt-get install -y -q ruby1.9.3 rubygems
|
|
run gem install fpm
|
|
run apt-get install -y -q reprepro
|
|
# 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
|
|
run /bin/echo -e '[default]\naccess_key=$AWS_ID\nsecret_key=$AWS_KEY\n' > /.s3cfg
|
|
# 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
|
|
run PKG=github.com/dotcloud/tar/ REV=d06045a6d9; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV
|
|
# Docker requires code.google.com/p/go.net/websocket
|
|
run apt-get install -y -q mercurial
|
|
run PKG=code.google.com/p/go.net REV=78ad7f42aa2e; hg clone https://$PKG /go/src/$PKG && cd /go/src/$PKG && hg checkout -r $REV
|
|
# Upload docker source
|
|
add . /go/src/github.com/dotcloud/docker
|
|
# Build the binary
|
|
run cd /go/src/github.com/dotcloud/docker && ./make.sh
|