From a373f532730379885e9f88796197af9d25997ce5 Mon Sep 17 00:00:00 2001 From: Adrien Beaudouin Date: Sun, 24 Dec 2023 14:46:58 +0100 Subject: [PATCH] add frankenphp --- php-frankenphp-83.dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 php-frankenphp-83.dockerfile diff --git a/php-frankenphp-83.dockerfile b/php-frankenphp-83.dockerfile new file mode 100644 index 0000000..ef995d4 --- /dev/null +++ b/php-frankenphp-83.dockerfile @@ -0,0 +1,8 @@ +FROM dunglas/frankenphp:latest-php8.3 + +COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ + +RUN install-php-extensions @composer opcache intl pdo_mysql pdo_pgsql + +RUN cp $PHP_INI_DIR/php.ini-production $PHP_INI_DIR/php.ini; \ + sed -i 's/memory_limit = "GPCS"/variables_order = "EGPCS"/' $PHP_INI_DIR/php.ini;