From 4bd5585f8c8ef29eacf5bd69142a89119455eac7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 08:34:10 -0400 Subject: [PATCH] fix: Update Node.js to 24.16.0 (#12448) Co-authored-by: tommoor <380914+tommoor@users.noreply.github.com> --- Dockerfile | 2 +- Dockerfile.base | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4abf0c7b97..210f3b8cf2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG APP_PATH WORKDIR $APP_PATH # --- -FROM node:24.15.0-slim AS runner +FROM node:24.16.0-slim AS runner LABEL org.opencontainers.image.source="https://github.com/outline/outline" diff --git a/Dockerfile.base b/Dockerfile.base index 4eea4c5fe0..21517f0dd3 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,5 +1,5 @@ ARG APP_PATH=/opt/outline -FROM node:24.15.0 AS deps +FROM node:24.16.0 AS deps ARG APP_PATH WORKDIR $APP_PATH