This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get update | |
apt-get -y upgrade | |
apt-get -y install build-essential zlib1g-dev libreadline-dev libssl-dev libcurl4-openssl-dev | |
apt-get -y install git-core | |
# Install rbenv | |
git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv | |
# Add rbenv to the path: | |
echo '# rbenv setup' > /etc/profile.d/rbenv.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# docker | |
wget -q -O - https://get.docker.io/gpg | apt-key add - | |
echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list | |
apt-get update -qq; apt-get install -q -y --force-yes lxc-docker | |
# Add vagrant user to the docker group | |
usermod -a -G docker vagrant | |
# packer | |
apt-get install unzip | |
wget https://dl.bintray.com/mitchellh/packer/0.5.2_linux_amd64.zip |
NewerOlder