From 5e260c7cfdb1df99c8096ce3930506cf2a5c1e70 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Tue, 11 Jul 2023 09:28:54 +0200 Subject: [PATCH] Add more PHP extensions to the Dockerfile --- docker/php-fpm/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/php-fpm/Dockerfile b/docker/php-fpm/Dockerfile index df44d3a5..e84e26d7 100644 --- a/docker/php-fpm/Dockerfile +++ b/docker/php-fpm/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update \ zip \ unzip \ && curl -sSL https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions -o - | sh -s \ - curl gd intl ldap mbstring mysqli odbc pdo pdo_mysql soap sockets xml zip xdebug \ + curl gd intl ldap mbstring mysqli odbc pdo pdo_mysql soap sockets xml zip xdebug exif sqlite3 gettext bcmath csv event imap inotify ldap mcrypt redis \ && docker-php-ext-enable xdebug \ && curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \ && curl -sLS https://deb.nodesource.com/setup_18.x | bash - \