Merge pull request #16151 from Budibase/update-node-usage-in-dockerfiles

Update node usage in bb/couchdb image
This commit is contained in:
Adria Navarro 2025-05-15 12:39:02 +02:00 committed by GitHub
commit d127b27822
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
# Dockerfile. Only modifications related to upgrading from Debian bullseye to
# bookworm have been included. The `runner` image contains Budibase's
# customisations to the image, e.g. adding Clouseau.
FROM node:20-slim AS base
FROM node:22-slim AS base
# Add CouchDB user account to make sure the IDs are assigned consistently
RUN groupadd -g 5984 -r couchdb && useradd -u 5984 -d /opt/couchdb -g couchdb couchdb