mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-25 10:04:14 +03:00
11 lines
286 B
Ruby
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
|