diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-28 09:22:01 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-28 09:22:01 +0900 |
| commit | 6573c3b522f0b4795a9f363aa27ca071e16187d8 (patch) | |
| tree | 9155c78e0271521b936e69ad8c89e1833d38273d | |
| parent | 12.79.2 (diff) | |
| download | sharkey-6573c3b522f0b4795a9f363aa27ca071e16187d8.tar.gz sharkey-6573c3b522f0b4795a9f363aa27ca071e16187d8.tar.bz2 sharkey-6573c3b522f0b4795a9f363aa27ca071e16187d8.zip | |
Use Node.js v16
| -rw-r--r-- | .github/workflows/nodejs.yml | 2 | ||||
| -rw-r--r-- | .node-version | 2 | ||||
| -rw-r--r-- | Dockerfile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 2cbc4be79a..7e02ba39fb 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x, 15.x] + node-version: [14.x, 16.x] services: postgres: diff --git a/.node-version b/.node-version index ab155ce138..c9b6b29e00 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -v14.15.5 +v16.0.0 diff --git a/Dockerfile b/Dockerfile index 067b772a42..ee4939b58c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:14.15.5-alpine3.13 AS base +FROM node:16.0.0-alpine3.13 AS base ENV NODE_ENV=production |