commit b0e6cbff4bf3b63a35b3558f4c203b4e13cbf06f Author: Nicole O'Connor Date: Tue Jul 2 08:22:57 2024 -0700 init diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..493cb82 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,12 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant.configure("2") do |config| + config.ssh.insert_key = false + config.vm.box = "generic/ubuntu2204" + config.vm.synced_folder ".", "/vagrant", disabled: true + + config.vm.provision "shell", inline: <<-SHELL + apt-get update && apt-get upgrade -y + SHELL +end