Skip to content

Commit 27c8f17

Browse files
authored
upgrade node version to 20.20.0 (#114)
1 parent fbc056b commit 27c8f17

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20.18.0
1+
v20.20.0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20.18.0 AS ui-build
1+
FROM node:20.20.0 AS ui-build
22

33
WORKDIR /build
44

@@ -14,7 +14,7 @@ RUN chmod -R g=u /build/dist
1414
#
1515
# build node app in the next stage
1616
#
17-
FROM node:20.18.0-alpine
17+
FROM node:20.20.0-alpine
1818

1919
LABEL maintainer="ming luo"
2020

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Use these versions of node and npm:
147147
$ npm -v
148148
10.8.0
149149
$ node -v
150-
v20.18.0
150+
v20.20.0
151151
```
152152

153153
In order to easily manage your node and npm versions across developer machines, we use [nvm](https://github.com/nvm-sh/nvm). We set the node version in the [.nvmrc](./.nvmrc) file. In order to set up your environment, open a shell, change to the project directory, and run the following:

dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"moment": "^2.29.4"
9898
},
9999
"engines": {
100-
"node": "^20.18.0",
100+
"node": "^20.20.0",
101101
"npm": "^10.8.0"
102102
},
103103
"gitHooks": {

server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "backend of dashboard",
55
"main": "server.js",
66
"engines": {
7-
"node": "^20.18.0",
7+
"node": "^20.20.0",
88
"npm": "^10.8.0"
99
},
1010
"scripts": {

0 commit comments

Comments
 (0)