From a2d131ed20f8f6e33894058e2a558d0d4d1c6e15 Mon Sep 17 00:00:00 2001 From: djodjo3 Date: Thu, 26 Dec 2024 16:20:42 +0100 Subject: [PATCH] Fix: increasing PHP memory --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a8392fcb..2e57f25a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,4 +43,5 @@ RUN mv /var/www/html/vhost.conf /etc/apache2/sites-enabled/000-default.conf && \ RUN sed -i 's/^max_execution_time = .*/max_execution_time = 3600/' /usr/local/etc/php/php.ini-production && \ sed -i 's/variables_order = "GPCS"/variables_order = "EGPCS"/' /usr/local/etc/php/php.ini-production && \ + sed -i 's/memory_limit = 128M/memory_limit = 192M/' /usr/local/etc/php/php.ini-production && \ mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"