From da3c091602da9ead97fac0c8cd46d6962465b3f5 Mon Sep 17 00:00:00 2001 From: Shyim Date: Sun, 27 Aug 2023 12:42:28 +0200 Subject: [PATCH] fix: increase php memory limit --- Dockerfile.base | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.base b/Dockerfile.base index 6dcf0b1c..c859b52d 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -11,7 +11,8 @@ RUN apt-get update \ && IPE_GD_WITHOUTAVIF=1 install-php-extensions bcmath gd intl mysqli pdo_mysql sockets bz2 soap zip gmp pcntl redis imagick xsl calendar amqp \ && apt-get autoremove -y \ && apt-get clean -y \ - && rm -rf /var/lib/apt/lists/* + && rm -rf /var/lib/apt/lists/* \ + && echo 'memory_limit=512M' > /usr/local/etc/php/conf.d/docker.ini RUN curl -fsSL https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash - \ && . /root/.bashrc \