Skip to content

Commit 598c0e1

Browse files
committed
Upgrade to node 22
1 parent 8e3d680 commit 598c0e1

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
FROM node:18.13.0-buster AS node_build
2-
RUN npm install npm@8 -g
1+
FROM node:22-bookworm AS node_build
2+
RUN npm install npm@10 -g
33

44
COPY /client /client
55
WORKDIR /client
66
RUN npm ci
77
COPY /server /server
88
RUN npm run build
99

10-
FROM python:3.10-buster
10+
FROM python:3.10-bookworm
1111

1212
COPY /server/requirements.txt ./requirements.txt
1313
RUN pip install -r requirements.txt

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A digital script project for cueing theatrical shows
1515

1616
### Requirements
1717

18-
* Node v18.13.x (npm 8.11.x)
18+
* Node v22.x (npm 10.x)
1919
* Python 3.10.x
2020

2121
### Client

client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"ci-lint": "eslint 'src/**/*.{js,vue}'"
99
},
1010
"engines": {
11-
"npm": ">=8.0.0 <9.0.0",
12-
"node": ">=18.13.0"
11+
"npm": ">=10.0.0 <11",
12+
"node": ">=22.0.0 <23"
1313
},
1414
"dependencies": {
1515
"bootstrap": "4.6.2",

0 commit comments

Comments
 (0)