Skip to content

Commit c567920

Browse files
committed
Upgrade Node.js to v22.16.0
This is latest LTS version of Node.js.
1 parent 87eb100 commit c567920

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ commands:
1919
jobs:
2020
build:
2121
docker:
22-
- image: cimg/node:18.20.4
22+
- image: cimg/node:22.16.0
2323
steps:
2424
- checkout
2525
- setup_npm
@@ -32,7 +32,7 @@ jobs:
3232

3333
test:
3434
docker:
35-
- image: cimg/node:18.20.4
35+
- image: cimg/node:22.16.0
3636
steps:
3737
- checkout
3838
- setup_npm

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.20.4
1+
22.16.0

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Baseline image for development/test/build ###
22
# We require a lot of extras for building (Python, GCC) because of Node-Zopfli.
3-
FROM node:18.20.4 as dev
3+
FROM node:22.16.0 as dev
44
LABEL maintainer="enviroDGI@gmail.com"
55

66
RUN mkdir -p /app
@@ -30,7 +30,7 @@ RUN npm run build-production
3030
### Release Image ###
3131
# It might feel ridiculous to build up all the same things again, but the
3232
# resulting image is less than half the size!
33-
FROM node:18.20.4-slim as release
33+
FROM node:22.16.0-slim as release
3434
LABEL maintainer="enviroDGI@gmail.com"
3535

3636
RUN apt-get update && apt-get install -y --no-install-recommends dumb-init

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ It’s a React.js-based browser application with a Node.js backend with the foll
1717

1818
## Installation
1919

20-
1. Install Node 18.20.4.
20+
1. Install Node 22.16.0.
2121
- We recommend using [Nodenv][nodenv], which will automatically select the correct version of Node.js to run for you.
2222
- If you don’t yet have the right version of Node.js installed, enter the root directory for this project and then run `nodenv install`.
2323
- Alternatively, you can use [NVM][nvm] or a variety of [alternatives][nodenv-alternatives] for managing multiple versions of Node.js.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"author": "",
8181
"license": "GPL-3.0",
8282
"engines": {
83-
"node": "18.20.4"
83+
"node": "22.16.0"
8484
},
8585
"browserslist": [
8686
"last 3 versions",

0 commit comments

Comments
 (0)