Add Vagrantfile
This commit is contained in:
parent
b082362df4
commit
0b267b2dc0
|
|
@ -4,3 +4,4 @@ cargo
|
||||||
sccache
|
sccache
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
.vagrant
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
# -*- 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
|
||||||
Loading…
Reference in New Issue