Upgrade Vagrant Node.js to 10.x, fixes #56

This commit is contained in:
Alex Gleason 2019-07-22 16:27:20 -04:00
parent 1c8fb11b43
commit 45c14ae5c3
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

2
Vagrantfile vendored

@ -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"]}