Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. # Vagrantfile API/syntax version
  2. VAGRANTFILE_API_VERSION = "2"
  3.  
  4. Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  5.  
  6. config.vm.box = "ubuntu/xenial64"
  7. config.vm.provision :shell, inline: "apt-get update && apt-get install maven git make openjdk-8-jdk gcc-4.7 g++-4.7 gcc-4.7-plugin-dev gfortran-4.7 gcc-4.7.multilib g++-4.7-multilib -y"
  8.  
  9. config.vm.provider "virtualbox" do |v|
  10. v.memory = 8192
  11. v.cpus = 2
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement