From 3096c5b8f26665711e274e5d1b40d2c1e2c5c8d9 Mon Sep 17 00:00:00 2001 From: Adrien le Maire Date: Wed, 3 Feb 2021 12:27:40 +0000 Subject: [PATCH] Update Dockerfile --- roundcubemail/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/roundcubemail/Dockerfile b/roundcubemail/Dockerfile index 5e22381..fe01cfb 100644 --- a/roundcubemail/Dockerfile +++ b/roundcubemail/Dockerfile @@ -19,16 +19,15 @@ RUN set -ex; \ ; \ \ 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 ldap --with-libdir="lib/$debMultiarch"; \ - docker-php-ext-install \ + docker-php-ext-configure gd; \ + docker-php-ext-configure ldap; \ + docker-php-ext-install -j$(nproc) \ exif \ gd \ intl \ ldap \ pdo_mysql \ pdo_pgsql \ - pdo_sqlite \ zip \ ; \ pecl install imagick; \