Move docker to node 22 (#1309)

This unblocks the CI

We already use node 22 in the CI most places, I just forgot the
Dockerfile, and now that Node 18 is recently EOL it appear to be failing
there.

## Launch Checklist

<!-- Thanks for the PR! Feel free to add or remove items from the
checklist. -->


 - [X] Briefly describe the changes in this PR.
 - [ ] Link to related issues.
- [ ] Include before/after visuals or gifs if this PR includes visual
changes.
 - [ ] Write tests for all new functionality.
 - [ ] Add an entry to `CHANGELOG.md` under the `## main` section.
This commit is contained in:
Birk Skyum
2025-08-07 20:34:13 +02:00
committed by GitHub
parent 0bbb04e4ff
commit 727bc7dfae

View File

@@ -1,4 +1,4 @@
FROM node:18 as builder
FROM node:22 as builder
WORKDIR /maputnik
# Only copy package.json to prevent npm install from running on every build