From ac1f0af5ae7891a35911a29cacb060d1fe7e7403 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20P=C5=82aczek?= Date: Tue, 4 Feb 2025 21:00:12 +0100 Subject: [PATCH] Increase php memory limit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index adce4f0..57f041c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM php:8.3-cli WORKDIR /usr/src/app ENV PHP_MEMORY_LIMIT=512M - +RUN echo "memory_limit=512M" > /usr/local/etc/php/conf.d/memory-limit.ini RUN apt-get update && apt-get install -y \ git \ unzip \