diff --git a/3.0/apache/Dockerfile b/3.0/apache/Dockerfile index 7dbe7bc..1efe51a 100644 --- a/3.0/apache/Dockerfile +++ b/3.0/apache/Dockerfile @@ -31,6 +31,7 @@ RUN set -ex; \ docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr; \ docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \ docker-php-ext-install -j5 \ + exif \ gd \ imap \ ldap \ diff --git a/3.0/fpm/Dockerfile b/3.0/fpm/Dockerfile index df3875e..6b91d98 100644 --- a/3.0/fpm/Dockerfile +++ b/3.0/fpm/Dockerfile @@ -31,6 +31,7 @@ RUN set -ex; \ docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr; \ docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \ docker-php-ext-install -j5 \ + exif \ gd \ imap \ ldap \ diff --git a/4.0/apache/Dockerfile b/4.0/apache/Dockerfile index 2774fa5..37c2533 100644 --- a/4.0/apache/Dockerfile +++ b/4.0/apache/Dockerfile @@ -31,6 +31,7 @@ RUN set -ex; \ docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr; \ docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \ docker-php-ext-install -j5 \ + exif \ gd \ imap \ ldap \ diff --git a/4.0/fpm-alpine/Dockerfile b/4.0/fpm-alpine/Dockerfile index 07f8a0e..9d264ee 100644 --- a/4.0/fpm-alpine/Dockerfile +++ b/4.0/fpm-alpine/Dockerfile @@ -19,6 +19,7 @@ RUN set -ex; \ docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr ; \ docker-php-ext-configure imap --with-imap-ssl && \ docker-php-ext-install \ + exif \ gd \ imap \ ldap \ diff --git a/4.0/fpm/Dockerfile b/4.0/fpm/Dockerfile index f8c78ff..6cb7cfc 100644 --- a/4.0/fpm/Dockerfile +++ b/4.0/fpm/Dockerfile @@ -31,6 +31,7 @@ RUN set -ex; \ docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr; \ docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \ docker-php-ext-install -j5 \ + exif \ gd \ imap \ ldap \