diff --git a/Vagrantfile b/Vagrantfile index 6f2444e..0ad6394 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,5 +1,5 @@ Vagrant.configure(2) do |config| - config.vm.box = "ubuntu/trusty64" + config.vm.box = "ubuntu/bionic64" config.vm.network :forwarded_port, guest: 4567, host: 4567 config.vm.provider "virtualbox" do |vb| vb.memory = "2048" @@ -8,12 +8,11 @@ Vagrant.configure(2) do |config| config.vm.provision "bootstrap", type: "shell", inline: <<-SHELL - sudo apt-add-repository ppa:brightbox/ruby-ng sudo apt-get update - sudo apt-get install -yq ruby2.4 ruby2.4-dev + sudo apt-get install -yq ruby ruby-dev sudo apt-get install -yq pkg-config build-essential nodejs git libxml2-dev libxslt-dev sudo apt-get autoremove -yq - gem2.4 install --no-ri --no-rdoc bundler + gem install --no-ri --no-rdoc bundler SHELL # add the local user git config to the vm