From 238a789e223ced456da37e7f4791c78e4cca5671 Mon Sep 17 00:00:00 2001 From: Michael Stenta Date: Tue, 13 Feb 2024 13:06:59 -0500 Subject: [PATCH] Set COMPOSER_ALLOW_SUPERUSER=1 to allow plugins to run as root/super user #799 --- docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index c568e4a25..23423dc02 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -50,6 +50,9 @@ RUN apt-get update && apt-get install -y \ # Set the COMPOSER_MEMORY_LIMIT environment variable to unlimited. ENV COMPOSER_MEMORY_LIMIT=-1 +# Set COMPOSER_ALLOW_SUPERUSER=1 to allow plugins to run as root/super user. +ENV COMPOSER_ALLOW_SUPERUSER=1 + # Add the build-farmOS.sh script. COPY build-farmOS.sh /usr/local/bin/ RUN chmod a+x /usr/local/bin/build-farmOS.sh