mirror of
https://github.com/rancher/os.git
synced 2025-06-22 13:07:04 +00:00
16 lines
372 B
Bash
Executable File
16 lines
372 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://github.com/ibuildthecloud/docker/releases/download/v1.5.0-rancher-2/docker-1.5.0 > /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
|