Files
weewx/vagrant/Vagrantfile-debian12-dev

23 lines
621 B
Ruby

# -*- mode: ruby -*-
Vagrant.configure("2") do |config|
config.vm.box = "bento/debian-12"
config.vm.box_check_update = false
config.vm.network "public_network"
config.vm.network :forwarded_port, guest: 22, host: 4001, id: "ssh"
config.vm.provider "virtualbox" do |vb|
vb.gui = false
vb.memory = "2048"
end
config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get install -y build-essential
apt-get install -y git
apt-get install -y rsync
apt-get install -y gpg
apt-get install -y debhelper
apt-get install -y lintian
apt-get install -y aptly
SHELL
end