Merge pull request 'Update node Docker tag to v23' (#57) from renovate/node-23.x into main
All checks were successful
Check usage of free licenses / build-static-assets (push) Successful in 28s
Playwright Tests / test (push) Successful in 2m40s
Build Nginx-based docker image / build-static-assets (push) Successful in 4m13s

Reviewed-on: #57
This commit is contained in:
bustikiller 2024-11-01 10:33:36 +00:00
commit a55b819378
3 changed files with 3 additions and 3 deletions

2
.nvmrc
View File

@ -1 +1 @@
22.11.0 23.0.0

View File

@ -1,6 +1,6 @@
# Based on https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile # Based on https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
FROM node:22-alpine AS base FROM node:23-alpine AS base
# Install dependencies only when needed # Install dependencies only when needed
FROM base AS deps FROM base AS deps

View File

@ -31,6 +31,6 @@
"@types/react-dom": "18.3.1" "@types/react-dom": "18.3.1"
}, },
"engines": { "engines": {
"node": ">=20.12.0" "node": ">=23.0.0"
} }
} }