From e7c1e557bf1c7bcaab345600502c758a66c1030a Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Tue, 21 May 2024 16:33:55 +0200 Subject: [PATCH] Update Dockerfile --- docker/nginx/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/nginx/Dockerfile b/docker/nginx/Dockerfile index 399bcfcd..558dc780 100644 --- a/docker/nginx/Dockerfile +++ b/docker/nginx/Dockerfile @@ -122,8 +122,9 @@ RUN sed -i \ -e 's/^post_max_size = .*/post_max_size = 1024M/' \ -e 's/^max_execution_time = .*/max_execution_time = 600/' \ -e 's/^opcache.enable= .*/opcache.enable=1/' \ - -e 's|^;sendmail_path = .*|sendmail_path = "/usr/bin/msmtp -t"|' \ /etc/php/8.2/fpm/php.ini +RUN sed -i 's|^;sendmail_path = .*|sendmail_path = "/usr/bin/msmtp -t"|' /etc/php/8.2/fpm/php.ini + RUN sed -i \ -e 's/^upload_max_filesize = .*/upload_max_filesize = 1024M/' \ -e 's/^max_input_time = .*/max_input_time = 600/' \ @@ -131,8 +132,8 @@ RUN sed -i \ -e 's/^post_max_size = .*/post_max_size = 1024M/' \ -e 's/^max_execution_time = .*/max_execution_time = 600/' \ -e 's/^opcache.enable= .*/opcache.enable=1/' \ - -e 's|^;sendmail_path = .*|sendmail_path = "/usr/bin/msmtp -t"|' \ /etc/php/8.2/cli/php.ini +RUN sed -i 's|^;sendmail_path = .*|sendmail_path = "/usr/bin/msmtp -t"|' /etc/php/8.2/cli/php.ini ########## EMAIL ##########