From 4aa970ba4d2f9735b305108b0929af77b507d5ec Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Mon, 4 Jun 2018 22:54:35 +0200 Subject: [PATCH] Restore --with-freetype-dir option --- php-apache/Dockerfile | 2 +- php-fpm/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/php-apache/Dockerfile b/php-apache/Dockerfile index 7d1f8f4..486bd76 100644 --- a/php-apache/Dockerfile +++ b/php-apache/Dockerfile @@ -18,7 +18,7 @@ RUN set -ex; \ ; \ \ debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \ - docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \ + 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 \ exif \ diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index dd1a4af..4868b9f 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -18,7 +18,7 @@ RUN set -ex; \ ; \ \ debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \ - docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \ + 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 \ exif \