Skip to content

Commit

Permalink
Increase resources for VM to not fail in the middle of the build
Browse files Browse the repository at this point in the history
  • Loading branch information
cburgmer committed Apr 13, 2015
1 parent b43f26c commit 0029fa5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Vagrantfile
Expand Up @@ -10,6 +10,11 @@ Vagrant.configure(2) do |config|
#config.vm.network "private_network", type: "dhcp"
#config.vm.synced_folder ".", "/vagrant", type: "nfs"

config.vm.provider "virtualbox" do |v|
v.memory = 4096
v.cpus = 4
end

config.vm.provision "shell", inline: <<-SHELL
sudo apt-get update
sudo apt-get install -y nodejs nodejs-legacy npm xvfb git firefox libfontconfig
Expand Down

0 comments on commit 0029fa5

Please sign in to comment.