Updated Vagrantfile

Modified `Vagrantfile` to build an Ubuntu environment rather than
Alpine, after the latter exhibited weird behavior.
This commit is contained in:
Chris Lane 2019-02-04 11:50:25 -05:00
parent 0b523a769f
commit 6ae76799f7
1 changed files with 4 additions and 4 deletions

8
Vagrantfile vendored
View File

@ -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