diff options
author | Shlee <github@shl.ee> | 2021-08-11 04:56:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 22:56:13 +0200 |
commit | 229f5d1681577c60e2aa0ab7240c5115acd9434a (patch) | |
tree | 00d3699b158dc20f19a5d09cb19332e78734b0b6 /Dockerfile | |
parent | 4ac78e2a066508a54de82f1d910ef2fd36c3d106 (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 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 8279e8735..fb596fdbf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:20.04 as build-dep # Use bash for the shell SHELL ["/bin/bash", "-c"] -# Install Node v12 (LTS) -ENV NODE_VER="12.21.0" +# Install Node v14 (LTS) +ENV NODE_VER="14.17.4" RUN ARCH= && \ dpkgArch="$(dpkg --print-architecture)" && \ case "${dpkgArch##*-}" in \ |