diff --git a/Vagrantfile b/Vagrantfile index 1e1396d..ef619ac 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,6 +1,10 @@ Vagrant.configure('2') do |config| config.vm.box = 'ubuntu/jammy64' config.vagrant.plugins = ['vagrant-vbguest'] + config.vm.provider 'virtualbox' do |v| + v.memory = '2048' + v.cpus = '2' + end config.vm.provision 'shell', inline: <<-SHELL export DEBIAN_FRONTEND=noninteractive export DEBCONF_NONINTERACTIVE_SEEN=true