about summary refs log tree commit diff
path: root/Vagrantfile
diff options
context:
space:
mode:
authormimikun <dzdzble_Effort_311@outlook.jp>2018-07-31 21:38:31 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-07-31 14:38:31 +0200
commit9ae53ad59ee18459775d19c4699c771c7f86fa7c (patch)
tree715bd1744916b1852fc84fb707c7d023ed2737e7 /Vagrantfile
parent13ac8ca66ab01c92e4ebcc7221efb3d474c9fd0b (diff)
Fix nodejs 8.x install in vagrant (#8105)
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index ddcdf3510..57fec9e02 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_6.x | sudo bash -
+curl -sL https://deb.nodesource.com/setup_8.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"]}