From eb01f40ec26f9906d5d8e5331854b1d0837400da Mon Sep 17 00:00:00 2001 From: Brad Thurber Date: Thu, 31 Oct 2019 08:16:12 -0400 Subject: [PATCH] Update Vagrantfile to Ubuntu 18.04 (#1158) * Slate 2.4 breaks vagrant * Update Vagrantfile * Update Vagrantfile --- Vagrantfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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