Update Dockerfile

This commit is contained in:
Adrien le Maire 2021-02-03 12:27:40 +00:00
parent e86ad4ffba
commit 3096c5b8f2

View File

@ -19,16 +19,15 @@ RUN set -ex; \
; \ ; \
\ \
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \ debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-png-dir=/usr --with-jpeg-dir=/usr; \ docker-php-ext-configure gd; \
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \ docker-php-ext-configure ldap; \
docker-php-ext-install \ docker-php-ext-install -j$(nproc) \
exif \ exif \
gd \ gd \
intl \ intl \
ldap \ ldap \
pdo_mysql \ pdo_mysql \
pdo_pgsql \ pdo_pgsql \
pdo_sqlite \
zip \ zip \
; \ ; \
pecl install imagick; \ pecl install imagick; \