Init Vagrantfile to run pyinstaller on Debian 11
This commit is contained in:
parent
56b14b3dba
commit
b57c4f1ae6
1 changed files with 11 additions and 0 deletions
11
vagrant/Vagrantfile
vendored
Normal file
11
vagrant/Vagrantfile
vendored
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
Vagrant.configure("2") do |config|
|
||||||
|
config.vm.box = "debian/bullseye64"
|
||||||
|
config.vm.provider :virtualbox do |vb|
|
||||||
|
end
|
||||||
|
|
||||||
|
config.vm.define "master" do |master|
|
||||||
|
master.vm.provision "shell", inline: <<-SHELL
|
||||||
|
mkdir /home/vagrant/stacosys
|
||||||
|
SHELL
|
||||||
|
end
|
||||||
|
end
|
Loading…
Add table
Reference in a new issue