From 06d5969099e5eae37c096cd9be9280fa00d31e86 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Apr 2026 06:19:11 -0400 Subject: [PATCH] fix: Update Node.js to 24.15.0 (#12120) 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 fdec598be7..4abf0c7b97 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG APP_PATH WORKDIR $APP_PATH # --- -FROM node:24.14.1-slim AS runner +FROM node:24.15.0-slim AS runner LABEL org.opencontainers.image.source="https://github.com/outline/outline" diff --git a/Dockerfile.base b/Dockerfile.base index 2a93c8b084..4eea4c5fe0 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,5 +1,5 @@ ARG APP_PATH=/opt/outline -FROM node:24.14.1 AS deps +FROM node:24.15.0 AS deps ARG APP_PATH WORKDIR $APP_PATH