[Docker] Bump to Node.js 22 (#6222)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Louis Lam
2025-10-27 23:58:27 +08:00
committed by GitHub
co-authored by Copilot
parent f6a47f351c
commit 8f3cb770eb
6 changed files with 27 additions and 13 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
# Download Apprise deb package
FROM node:20-bookworm-slim AS download-apprise
FROM node:22-bookworm-slim AS download-apprise
WORKDIR /app
COPY ./extra/download-apprise.mjs ./download-apprise.mjs
RUN apt update && \
@@ -9,7 +9,7 @@ RUN apt update && \
# Base Image (Slim)
# If the image changed, the second stage image should be changed too
FROM node:20-bookworm-slim AS base2-slim
FROM node:22-bookworm-slim AS base2-slim
ARG TARGETPLATFORM
# Specify --no-install-recommends to skip unused dependencies, make the base much smaller!