8 lines
346 B
Docker
8 lines
346 B
Docker
FROM dunglas/frankenphp:latest-php8.3
|
|
|
|
RUN install-php-extensions @composer opcache intl pdo_mysql pdo_pgsql pcntl
|
|
|
|
RUN cp $PHP_INI_DIR/php.ini-production $PHP_INI_DIR/php.ini; \
|
|
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;
|