We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34640e4 commit 3fb1c42Copy full SHA for 3fb1c42
build-images.sh
@@ -16,7 +16,7 @@ container=$(buildah from scratch)
16
# Reuse existing nodebuilder-mail container, to speed up builds
17
if ! buildah containers --format "{{.ContainerName}}" | grep -q nodebuilder-mail; then
18
echo "Pulling NodeJS runtime..."
19
- buildah from --name nodebuilder-mail -v "${PWD}:/usr/src:Z" docker.io/library/node:22.16.0-slim
+ buildah from --name nodebuilder-mail -v "${PWD}:/usr/src:Z" docker.io/library/node:24.11.1-slim
20
fi
21
22
if [[ -n "${SKIP_UI_BUILD}" ]]; then
ui/Containerfile
@@ -1,4 +1,4 @@
1
-FROM node:18-slim
+FROM node:24-slim
2
WORKDIR /app
3
ENV NODE_OPTIONS=--openssl-legacy-provider
4
EXPOSE 8080
0 commit comments