diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..d3f5a52 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,13 @@ +Vagrant.configure("2") do |config| + config.vm.box = "bento/ubuntu-16.04" + # Set up machine + config.vm.provision :shell, path: "bootstrap.sh" + + config.vm.provider "virtualbox" do |vb| + # Display the VirtualBox GUI when booting the machine + vb.gui = true + + # Customize the amount of memory on the VM: + vb.memory = "2048" + end +end diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 0000000..7cae7cd --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,5 @@ +#!/bin/bash +apt-get update +apt-get install -y ffmpeg sox python3-pip git python3-venv + +pip3 install pipenv