Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.18.0
v20.20.0
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.18.0 AS ui-build
FROM node:20.20.0 AS ui-build

WORKDIR /build

Expand All @@ -14,7 +14,7 @@ RUN chmod -R g=u /build/dist
#
# build node app in the next stage
#
FROM node:20.18.0-alpine
FROM node:20.20.0-alpine

LABEL maintainer="ming luo"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ Use these versions of node and npm:
$ npm -v
10.8.0
$ node -v
v20.18.0
v20.20.0
```

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:
Expand Down
2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"moment": "^2.29.4"
},
"engines": {
"node": "^20.18.0",
"node": "^20.20.0",
"npm": "^10.8.0"
},
"gitHooks": {
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "backend of dashboard",
"main": "server.js",
"engines": {
"node": "^20.18.0",
"node": "^20.20.0",
"npm": "^10.8.0"
},
"scripts": {
Expand Down