From 4d6312209d7d407ab446b0196460bbd19e036d86 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Jul 2024 18:40:07 +0000 Subject: [PATCH] chore(deps): update node.js to v18.20.4 --- build-images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-images.sh b/build-images.sh index d43e43f..8aa5fed 100644 --- a/build-images.sh +++ b/build-images.sh @@ -20,7 +20,7 @@ if [[ -n $WITH_UI ]]; then # Reuse existing nodebuilder-openldap container, to speed up builds if ! buildah containers --format "{{.ContainerName}}" | grep -q nodebuilder-openldap; then echo "Pulling NodeJS runtime..." - buildah from --name nodebuilder-openldap -v "${PWD}:/usr/src:Z" docker.io/library/node:18.19.0-alpine + buildah from --name nodebuilder-openldap -v "${PWD}:/usr/src:Z" docker.io/library/node:18.20.4-alpine fi echo "Build static UI files with node..." buildah run nodebuilder-openldap sh -c "cd /usr/src/ui && yarn install && yarn build"