Merge pull request #426 from cheat/vagrant

Updated Vagrantfile
This commit is contained in:
Chris Allen Lane 2019-02-04 11:54:06 -05:00 committed by GitHub
commit 2728ce4757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

8
Vagrantfile vendored
View File

@ -2,15 +2,15 @@
# vi: set ft=ruby : # vi: set ft=ruby :
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.box = "alpine/alpine64" config.vm.box = "ubuntu/bionic64"
config.vm.provider "virtualbox" do |vb| config.vm.provider "virtualbox" do |vb|
vb.memory = "256" vb.memory = "512"
end end
config.vm.provision "shell", inline: <<-SHELL config.vm.provision "shell", inline: <<-SHELL
sudo apk update sudo apt-get update
sudo apk add py-pip sudo apt-get install -y python-pip
su vagrant && sudo -H pip install docopt pygments termcolor flake8 su vagrant && sudo -H pip install docopt pygments termcolor flake8
cd /vagrant && sudo python setup.py install cd /vagrant && sudo python setup.py install
SHELL SHELL