summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorShlee <github@shl.ee>2021-08-11 04:56:13 +0800
committerGitHub <noreply@github.com>2021-08-10 22:56:13 +0200
commit229f5d1681577c60e2aa0ab7240c5115acd9434a (patch)
tree00d3699b158dc20f19a5d09cb19332e78734b0b6 /Vagrantfile
parent4ac78e2a066508a54de82f1d910ef2fd36c3d106 (diff)
NodeJS 14 support - circleci/docker/.nvmrc (#16163)
* Update config.yml * Update Dockerfile * Update .nvmrc * Update Dockerfile * NodeJS 10 is EOL. * Update package.json * Update README.md * Update Vagrantfile * Update Dockerfile * Update Dockerfile
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 4d0cc0f7621..82d41f7d57b 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_12.x | sudo bash -
+curl -sL https://deb.nodesource.com/setup_14.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"]}