1
0
mirror of https://github.com/rancher/os.git synced 2025-06-22 04:57:04 +00:00
os/scripts/bootstrap
2015-02-08 21:38:37 -07:00

16 lines
344 B
Bash
Executable File

#!/bin/bash
set -e
set -x
cd $(dirname $0)/..
apt-get update
apt-get install -y curl rsync build-essential syslinux xorriso
curl -sL https://test.docker.com/builds/Linux/x86_64/docker-1.5.0-rc4 > /usr/bin/docker
chmod +x /usr/bin/docker
curl -sL https://storage.googleapis.com/golang/go1.4.1.linux-amd64.tar.gz | tar xvzf - -C /usr/local