about summary refs log tree commit diff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorДаниил Пронин <mail@grawl.ru>2020-01-30 21:05:56 +1000
committerGitHub <noreply@github.com>2020-01-30 12:05:56 +0100
commit2f978abd8790ba2e1ef994a00627397c8ca8cb57 (patch)
treee797563ad6d82660a7973f1f04facd4933c1e7f3 /Vagrantfile
parent0fd2d2eee2bf2271c7dc4bc322287bd4cbba4a39 (diff)
Fix Node version in Vagrant (#13008)
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index c4941f673..79af1dc5d 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -12,7 +12,7 @@ curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
 sudo apt-add-repository 'deb https://dl.yarnpkg.com/debian/ stable main'
 
 # Add repo for NodeJS
-curl -sL https://deb.nodesource.com/setup_8.x | sudo bash -
+curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
 
 # Add firewall rule to redirect 80 to PORT and save
 sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port #{ENV["PORT"]}