Vagrant.configure("2") do |config|
  config.vbguest.auto_update = false if Vagrant.has_plugin?("vagrant-vbguest")
  config.vm.box = "generic/alpine315"
  # test v.provision()
  config.vm.provision :shell, :inline => "echo 'foo' > /home/vagrant/python_vagrant_test_file"
end
