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

Vagrant.configure("2") do |config|
  config.vm.box = "debian/contrib-jessie64"

  config.vm.provision "shell", inline: <<-SHELL
    apt-get install -y python pandoc texlive-latex-base texlive-fonts-recommended
  SHELL
end