From 007dc9823284e95fe13929f1754cd79e511fb6b6 Mon Sep 17 00:00:00 2001 From: pierrecdn Date: Thu, 27 Feb 2020 15:21:59 +0100 Subject: [PATCH] php: remove gd-native-ttf option on gd build Fixes #59 Signed-off-by: pierrecdn --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 444c664..fd2497c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN mkdir -p /var/lib/mibs/ietf && \ # Configure apache and required PHP modules RUN docker-php-ext-configure mysqli --with-mysqli=mysqlnd && \ docker-php-ext-install mysqli && \ - docker-php-ext-configure gd --enable-gd-native-ttf --with-freetype-dir=/usr/include/freetype2 --with-png-dir=/usr/include --with-jpeg-dir=/usr/include && \ + docker-php-ext-configure gd --with-freetype-dir=/usr/include/freetype2 --with-png-dir=/usr/include --with-jpeg-dir=/usr/include && \ docker-php-ext-install gd && \ docker-php-ext-install curl && \ docker-php-ext-install json && \