Skip to content

Commit

Permalink
Upgrade to node 22
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim020 committed Jul 16, 2024
1 parent 8e3d680 commit 598c0e1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM node:18.13.0-buster AS node_build
RUN npm install npm@8 -g
FROM node:22-bookworm AS node_build
RUN npm install npm@10 -g

COPY /client /client
WORKDIR /client
RUN npm ci
COPY /server /server
RUN npm run build

FROM python:3.10-buster
FROM python:3.10-bookworm

COPY /server/requirements.txt ./requirements.txt
RUN pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A digital script project for cueing theatrical shows

### Requirements

* Node v18.13.x (npm 8.11.x)
* Node v22.x (npm 10.x)
* Python 3.10.x

### Client
Expand Down
4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"ci-lint": "eslint 'src/**/*.{js,vue}'"
},
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=18.13.0"
"npm": ">=10.0.0 <11",
"node": ">=22.0.0 <23"
},
"dependencies": {
"bootstrap": "4.6.2",
Expand Down

0 comments on commit 598c0e1

Please sign in to comment.