Compare commits

...

2 Commits

Author SHA1 Message Date
3bcfcc8066
Update timezone config file naming
Changed the timezone configuration file name to avoid conflicts. Updated from `tzone.ini` to `zzz-tzone.ini`.
2025-01-21 16:48:16 +01:00
9de00a6421
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.
2025-01-21 16:48:11 +01:00

View File

@ -21,7 +21,8 @@ RUN set -eux;install-php-extensions zip
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone 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 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]\ndate.timezone = \"$TZ\"\n" > /usr/local/etc/php/conf.d/zzz-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 wait-for-it.sh /usr/local/bin/wait-for-it.sh
COPY entrypoint.daemon.sh /usr/local/bin/entrypoint.sh COPY entrypoint.daemon.sh /usr/local/bin/entrypoint.sh