Bump nodejs to v14.16.0 (#9046)

* Bump nodejs to v14.16.0

Lastest LTS version of nodejs is 14.16.0

* Bump nodejs to v14.16.0

Lastest LTS version of nodejs is 14.16.0
pull/9057/head
Piyotaro, Kiiroi (きいろい ぴよ太郎) 4 years ago committed by GitHub
parent 9205d3dbb1
commit 6385150c6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docker/ci/Dockerfile
  2. 2
      docker/dev/frontend/Dockerfile
  3. 2
      docker/prod/Dockerfile
  4. 6
      docs/development/development-environment-osx/README.md
  5. 6
      docs/development/development-environment-ubuntu/README.md
  6. 6
      docs/installation-and-operations/installation/manual/README.md
  7. 2
      package.json

@ -1,7 +1,7 @@
FROM ruby:2.7.2-buster
MAINTAINER operations@openproject.com
ENV NODE_VERSION="12.18.3"
ENV NODE_VERSION="14.16.0"
ENV CHROME_SOURCE_URL=https://dl.google.com/dl/linux/direct/google-chrome-stable_current_amd64.deb
ENV USER=dev

@ -1,4 +1,4 @@
FROM node:12.18
FROM node:14.16
MAINTAINER operations@openproject.com
ARG DEV_UID=1000

@ -9,7 +9,7 @@ ARG DEBIAN_FRONTEND=noninteractive
ARG PGLOADER_BINARY_DOWNLOAD_URL=https://openproject-docker-public.s3-eu-west-1.amazonaws.com/pgloader/bin/pgloader-ccl
ENV NODE_VERSION="12.18.3"
ENV NODE_VERSION="14.16.0"
ENV BUNDLER_VERSION="2.1.4"
ENV BUNDLE_PATH__SYSTEM=false
ENV APP_USER=app

@ -100,8 +100,8 @@ You can find the latest LTS version here: https://nodejs.org/en/download/
At the time of writing this is v14.15.4. Install and activate it with:
```bash
nodenv install 14.15.4
nodenv global 14.15.4
nodenv install 14.16.0
nodenv global 14.16.0
```
## Verify your installation
@ -116,7 +116,7 @@ $ bundler --version
Bundler version 2.1.4
node --version
v14.15.4
v14.16.0
npm --version
7.5.3

@ -138,8 +138,8 @@ You can find the latest LTS version here: https://nodejs.org/en/download/
At the time of writing this is v14.15.4 Install and activate it with:
```bash
nodenv install 14.15.4
nodenv global 14.15.4
nodenv install 14.16.0
nodenv global 14.16.0
nodenv rehash
```
@ -155,7 +155,7 @@ bundler --version
Bundler version 2.1.4
node --version
v14.15.4
v14.16.0
npm --version
7.5.3

@ -134,15 +134,15 @@ time to finish.
[openproject@host] source ~/.profile
[openproject@host] git clone git://github.com/OiNutter/node-build.git ~/.nodenv/plugins/node-build
[openproject@host] nodenv install 8.12.0
[openproject@host] nodenv install 14.16.0
[openproject@host] nodenv rehash
[openproject@host] nodenv global 8.12.0
[openproject@host] nodenv global 14.16.0
```
To check our Node installation we run `node --version`. It should output something very similar to:
```
v8.12.0
v14.16.0
```
## Installation of OpenProject

@ -10,6 +10,6 @@
},
"private": true,
"engines": {
"node": "~12.18.3"
"node": "~14.16.0"
}
}

Loading…
Cancel
Save