docker-images/frankenphp-84.dockerfile

8 lines
347 B
Plaintext
Raw Permalink Normal View History

2024-09-07 18:30:19 +02:00
FROM dunglas/frankenphp:latest
2023-12-24 14:46:58 +01:00
2024-10-26 20:34:02 +02:00
RUN install-php-extensions @composer opcache intl pdo_mysql pdo_pgsql pcntl exif gd
2023-12-24 14:46:58 +01:00
RUN cp $PHP_INI_DIR/php.ini-production $PHP_INI_DIR/php.ini; \
2023-12-24 16:48:26 +01:00
sed -i 's/variables_order = "GPCS"/variables_order = "EGPCS"/' $PHP_INI_DIR/php.ini; \
sed -i 's/memory_limit = 128M/memory_limit = 1G/' $PHP_INI_DIR/php.ini;