We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 004bfff commit e8cecf1Copy full SHA for e8cecf1
ubuntu-19.10_64/Vagrantfile
@@ -0,0 +1,15 @@
1
+Vagrant.configure(2) do |config|
2
+
3
+ config.vm.box = "ubuntu/eoan64"
4
+ config.vm.boot_timeout = 600
5
+ config.vm.synced_folder ".", "/vagrant", disabled: true
6
7
+ config.vm.provision "shell", inline: <<-SHELL
8
+ sudo apt-get update
9
+ sudo apt-get install -y git clang cmake pkg-config javascriptcoregtk-4.0 libglib2.0-dev libzip-dev libcurl4-gnutls-dev libicu-dev maven unzip
10
+ curl -O https://download.clojure.org/install/linux-install-1.9.0.358.sh
11
+ chmod +x linux-install-1.9.0.358.sh
12
+ sudo ./linux-install-1.9.0.358.sh
13
+ SHELL
14
15
+end
0 commit comments