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 e8cecf1 commit 779bfccCopy full SHA for 779bfcc
ubuntu-20.04_64/Vagrantfile
@@ -0,0 +1,13 @@
1
+Vagrant.configure(2) do |config|
2
+
3
+ config.vm.box = "ubuntu/focal64"
4
5
+ config.vm.provision "shell", inline: <<-SHELL
6
+ sudo apt-get update
7
+ 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
8
+ curl -O https://download.clojure.org/install/linux-install-1.9.0.358.sh
9
+ chmod +x linux-install-1.9.0.358.sh
10
+ sudo ./linux-install-1.9.0.358.sh
11
+ SHELL
12
13
+end
0 commit comments