From bc4504dd202ffdf1e2ea71d496e444a826a5075c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 15:22:03 +0000 Subject: [PATCH] build(deps): bump node from 22-alpine to 25-alpine Bumps node from 22-alpine to 25-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 25-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bd0f46925bc..701c20a12e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ARG BUILD_ENV=git ARG PnpmVersion=10.28.2 -FROM node:22-alpine AS adminbuild +FROM node:25-alpine AS adminbuild RUN npm install -g pnpm@${PnpmVersion} WORKDIR /opt/etherpad-lite COPY . . @@ -17,7 +17,7 @@ RUN pnpm install RUN pnpm run build:ui -FROM node:22-alpine AS build +FROM node:25-alpine AS build LABEL maintainer="Etherpad team, https://github.com/ether/etherpad" # Set these arguments when building the image from behind a proxy