From 4485c689ac7b7cfef53223c31133073d6c6631c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20M=C3=BCller?= Date: Sat, 28 Jun 2025 11:26:38 +0200 Subject: [PATCH] use node lts docker image instead of newest version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index eccecab90..9e4a0dfb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # Author: muxator ARG BUILD_ENV=git -FROM node:alpine AS adminbuild +FROM node:lts-alpine AS adminbuild RUN npm install -g pnpm@latest WORKDIR /opt/etherpad-lite COPY . . @@ -13,7 +13,7 @@ RUN pnpm install RUN pnpm run build:ui -FROM node:alpine AS build +FROM node:lts-alpine AS build LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite" # Set these arguments when building the image from behind a proxy