From 785109c30e4df18fbe57047c43485c5efffb2873 Mon Sep 17 00:00:00 2001 From: akadoya Date: Mon, 19 May 2025 13:38:52 -0700 Subject: [PATCH] added missing ext-xmlwriter and permissions --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 20dcaae..f01737e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,6 +63,7 @@ RUN apk --update --no-cache add \ php83-sockets \ php83-tokenizer \ php83-xml \ + php83-xmlwriter \ php83-zip \ python3 \ py3-pip \ @@ -135,7 +136,7 @@ RUN apk --update --no-cache add -t build-dependencies \ && cd ./html/plugins/Weathermap \ && git reset --hard $WEATHERMAP_PLUGIN_COMMIT \ ) \ - && chown -R nobody:nogroup ${LIBRENMS_PATH} \ + && chown -R ${PUID}:${PGID} ${LIBRENMS_PATH} \ && apk del build-dependencies \ && rm -rf .git \ html/plugins/Test \