From 332bde0aac358580193a12073f5b68b34412a407 Mon Sep 17 00:00:00 2001 From: ShoGinn <2660603+ShoGinn@users.noreply.github.com> Date: Tue, 6 Feb 2018 23:39:01 -0800 Subject: [PATCH] Update Dockerfile This is to fix the gd extension freetype requirement. --- 13.0/apache/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13.0/apache/Dockerfile b/13.0/apache/Dockerfile index 876c0c77..ad48f0ad 100644 --- a/13.0/apache/Dockerfile +++ b/13.0/apache/Dockerfile @@ -29,7 +29,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 --with-png-dir=/usr --with-jpeg-dir=/usr; \ docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \ docker-php-ext-install gd exif intl mbstring mcrypt ldap mysqli opcache pdo_mysql pdo_pgsql pgsql zip pcntl; \ pecl install APCu-5.1.9; \