From 9de00a6421dd599c38f660a459b02f418d7a78d9 Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Tue, 21 Jan 2025 16:48:11 +0100 Subject: [PATCH] Update PHP config for memory limit Added a new configuration to set the PHP memory limit to unlimited. This change helps prevent memory-related issues during execution. --- Dockerfile.daemon | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.daemon b/Dockerfile.daemon index f6dc8e4..847139f 100644 --- a/Dockerfile.daemon +++ b/Dockerfile.daemon @@ -22,6 +22,7 @@ RUN set -eux;install-php-extensions zip RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" RUN printf "[PHP]\ndate.timezone = \"$TZ\"\n" > /usr/local/etc/php/conf.d/tzone.ini +RUN printf "[PHP]\nmemory_limit = -1\n" > /usr/local/etc/php/conf.d/zzz-memory-limit.ini COPY wait-for-it.sh /usr/local/bin/wait-for-it.sh COPY entrypoint.daemon.sh /usr/local/bin/entrypoint.sh