ostree/rust-bindings/rust/Vagrantfile
2022-05-06 12:53:56 -04:00

11 lines
286 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "bento/fedora-latest"
config.vm.provision "shell", inline: <<-SHELL
dnf install -y cargo curl make ostree-devel podman rust
echo "cd /vagrant" >> ~vagrant/.bash_profile
SHELL
end