Last active
August 29, 2015 14:21
-
-
Save outro56/59b9a71cd88445567aee to your computer and use it in GitHub Desktop.
Provision development image
This file contains 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
#!/usr/bin/env bash | |
echo "Provisioning virtual machine..." | |
sudo apt-get update | |
sudo apt-get install -y python-software properties | |
sudo apt-get install -y software-properties-common | |
sudo add-apt-repository -y ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install -y build-essentials | |
sudo apt-get install -y git | |
sudo apt-get install -y bash-completion | |
sudo apt-get install -y llvm | |
sudo apt-get install -y cmake | |
sudo apt-get install -y gdb | |
sudo apt-get install -y clang-3-5 | |
sudo apt-get install -y go | |
sudo apt-get install -y python | |
sudo apt-get install -y pip | |
sudo apt-get install -y node | |
sudo apt-get install -y npm | |
sudo apt-get install -y oracle-java8-installer | |
sudo apt-get install -y maven | |
export JAVA_1_8_HOME=/usr/lib/jvm/java-8-oracle | |
(cd /tmp ; wget http://apt.biicode.com/install && chmod +x install.sh && ./install.sh) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment