Skip to content
Snippets Groups Projects
Vagrantfile 377 B
Newer Older
# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
  config.vm.box = "debian/jessie64"
  config.vm.synced_folder ".", "/test", type: 'virtualbox'
  config.vm.provision "shell", inline: <<-SHELL
    apt-get update
    apt-get install -y libmicrohttpd-dev libjansson-dev libcurl4-gnutls-dev libgnutls28-dev libgcrypt20-dev libcryptsetup-dev
  SHELL
end