Skip to content

Commit 0d4b765

Browse files
committed
chore: fixed permissions
1 parent 06f67b4 commit 0d4b765

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
#
55
# Author: muxator
66
ARG BUILD_ENV=git
7+
ARG PNPM_VERSION=10.18.3
78

89
FROM node:lts-alpine AS adminbuild
9-
RUN npm install -g pnpm@latest
10+
RUN npm install -g pnpm@$PNPM_VERSION
1011
WORKDIR /opt/etherpad-lite
1112
COPY . .
1213
RUN pnpm install
@@ -100,7 +101,7 @@ RUN mkdir -p "${EP_DIR}" && chown etherpad:etherpad "${EP_DIR}"
100101
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199
101102
RUN \
102103
mkdir -p /usr/share/man/man1 && \
103-
npm install pnpm@latest -g && \
104+
npm install pnpm@$PNPM_VERSION -g && \
104105
apk update && apk upgrade && \
105106
apk add --no-cache \
106107
ca-certificates \

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"type": "git",
4949
"url": "https://github.com/ether/etherpad-lite.git"
5050
},
51-
"packageManager": "[email protected].0",
51+
"packageManager": "[email protected].3",
5252
"engineStrict": true,
5353
"version": "2.5.1",
5454
"license": "Apache-2.0"

0 commit comments

Comments
 (0)