From 0d4b7655935d24b3e74e97ee6d30f1b6ddd5a1ef Mon Sep 17 00:00:00 2001 From: SamTV12345 <40429738+samtv12345@users.noreply.github.com> Date: Sun, 19 Oct 2025 18:11:27 +0200 Subject: [PATCH] chore: fixed permissions --- Dockerfile | 5 +++-- package.json | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1b0a45d1a..4391a3d7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,9 +4,10 @@ # # Author: muxator ARG BUILD_ENV=git +ARG PNPM_VERSION=10.18.3 FROM node:lts-alpine AS adminbuild -RUN npm install -g pnpm@latest +RUN npm install -g pnpm@$PNPM_VERSION WORKDIR /opt/etherpad-lite COPY . . RUN pnpm install @@ -100,7 +101,7 @@ RUN mkdir -p "${EP_DIR}" && chown etherpad:etherpad "${EP_DIR}" # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199 RUN \ mkdir -p /usr/share/man/man1 && \ - npm install pnpm@latest -g && \ + npm install pnpm@$PNPM_VERSION -g && \ apk update && apk upgrade && \ apk add --no-cache \ ca-certificates \ diff --git a/package.json b/package.json index 5f070f488..a895072d3 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "type": "git", "url": "https://github.com/ether/etherpad-lite.git" }, - "packageManager": "pnpm@10.18.0", + "packageManager": "pnpm@10.18.3", "engineStrict": true, "version": "2.5.1", "license": "Apache-2.0"