10 lines
324 B
Ruby
10 lines
324 B
Ruby
# This Vagrantfile can be used to develop Vagrant. Note that VirtualBox
|
|
# doesn't run in VirtualBox so you can't actually _run_ Vagrant within
|
|
# the VM created by this Vagrantfile, but you can use it to develop the
|
|
# Ruby, run unit tests, etc.
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "hashicorp/bionic64"
|
|
end
|
|
|