summaryrefslogtreecommitdiff
path: root/Vagrantfile
blob: 635913743d5f60a8251d5a624d4d0f1a34ca4b02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- mode: ruby -*-
# vi: set ft=ruby :

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "ubuntu/trusty64"

  config.vm.provider "virtualbox" do |v|
    v.memory = 1024  # necessary to avoid 'I can't write on file' errors
  end

  config.vm.provision "shell", inline: \
    'apt-get install -y texlive texlive-fonts-extra texlive-latex-extra texlive-science texlive-xetex'
end