mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Install python-magic (it helps s3cmd) and a convenience /src symlink
This commit is contained in:
parent
bfee2c726e
commit
9694fb85d7
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,7 @@ 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 pip install python-magic
|
||||
run /bin/echo -e '[default]\naccess_key=$AWS_ACCESS_KEY\nsecret_key=$AWS_SECRET_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
|
||||
|
@ -32,6 +33,7 @@ run apt-get install -y -q mercurial
|
|||
run PKG=code.google.com/p/go.net/ REV=84a4013f96e0; hg clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && hg checkout $REV
|
||||
# Upload docker source
|
||||
add . /go/src/github.com/dotcloud/docker
|
||||
run ln -s /go/src/github.com/dotcloud/docker /src
|
||||
# Build the binary
|
||||
run cd /go/src/github.com/dotcloud/docker && ./make.sh
|
||||
cmd cd /go/src/github.com/dotcloud/docker && ./release.sh
|
||||
|
|
Loading…
Reference in a new issue