diff --git a/doc/dependencies.md b/doc/dependencies.md index 65764d9c2..f8019180e 100644 --- a/doc/dependencies.md +++ b/doc/dependencies.md @@ -24,8 +24,7 @@ | [firefox](https://www.mozilla.org/firefox/) | 95+ | MPL | Dockerfile | prod | bin | for client-side map rendering and integration testing | | [firefox-geckodriver](https://www.ubuntuupdates.org/package/ubuntu_mozilla_security/bionic/main/base/firefox-geckodriver) | 95+ | MPL | Dockerfile | prod | bin | for client-side map rendering and integration testing | | [pipenv](https://pypi.org/project/pipenv/) | 2024.4.0 | MIT | Dockerfile | prod | bin | to install Python dependencies | -| [node.js](https://nodejs.org/) | 22 | MIT | client/docker/Dockerfile | prod | bin | to run Layman Test Client | -| [node.js](https://nodejs.org/) | 16 | MIT | timgen/Dockerfile | prod | bin | to run Timgen | +| [node.js](https://nodejs.org/) | 22 | MIT | client/docker/Dockerfile | prod | bin | to run Layman Test Client and Timgen | | [npm](https://www.npmjs.com/get-npm) | 10 | Artistic License 2.0 | client/docker/Dockerfile | prod | bin | to install node.js dependencies | | [gunicorn](https://gunicorn.org/) | 22 | MIT | requirements.production.txt | opt | bin | as Flask production server | | [nginx](http://nginx.org/) | 1.16 | BSD 2-Clause | docker-compose.yml | opt | bin | as production server | diff --git a/timgen/.nvmrc b/timgen/.nvmrc index 5edcff036..92f279e3e 100644 --- a/timgen/.nvmrc +++ b/timgen/.nvmrc @@ -1 +1 @@ -v16 \ No newline at end of file +v22 \ No newline at end of file diff --git a/timgen/Dockerfile.production b/timgen/Dockerfile.production index 6d9871137..b0b6997bd 100644 --- a/timgen/Dockerfile.production +++ b/timgen/Dockerfile.production @@ -1,4 +1,4 @@ -FROM node:16-alpine +FROM node:22-alpine RUN mkdir /code WORKDIR /code