From 6ae76799f732db2d8829e4f185bdb1ee9029820a Mon Sep 17 00:00:00 2001 From: Chris Lane Date: Mon, 4 Feb 2019 11:50:25 -0500 Subject: [PATCH] Updated Vagrantfile Modified `Vagrantfile` to build an Ubuntu environment rather than Alpine, after the latter exhibited weird behavior. --- Vagrantfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index eae2aff..3ab20e3 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,15 +2,15 @@ # vi: set ft=ruby : Vagrant.configure("2") do |config| - config.vm.box = "alpine/alpine64" + config.vm.box = "ubuntu/bionic64" config.vm.provider "virtualbox" do |vb| - vb.memory = "256" + vb.memory = "512" end config.vm.provision "shell", inline: <<-SHELL - sudo apk update - sudo apk add py-pip + sudo apt-get update + sudo apt-get install -y python-pip su vagrant && sudo -H pip install docopt pygments termcolor flake8 cd /vagrant && sudo python setup.py install SHELL