From bcde1ad934b761c49b318fc1fbb03d064002dfe3 Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Sun, 24 Nov 2024 13:25:17 +0100 Subject: [PATCH] fix permissions --- etherpad_application_dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/etherpad_application_dockerfile b/etherpad_application_dockerfile index fe0c511..d2b50ec 100644 --- a/etherpad_application_dockerfile +++ b/etherpad_application_dockerfile @@ -1,2 +1,9 @@ ARG VERSION=1.8.0 FROM etherpad/etherpad:${VERSION} + +USER root + +RUN chown -R etherpad:etherpad /opt/ehterpad-lite \ + && chmod -R 0750 /opt/ehterpad-lite + +USER etherpad \ No newline at end of file