From be3de753c3e46f08ff4eef65dc9a2049aa096971 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Mon, 19 Apr 2021 19:25:23 +0200 Subject: [PATCH] fix: change gd build options for PHP 7.4 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 69a0dc3..73e9477 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN apt-get update \ && docker-php-ext-install -j$(nproc) iconv \ && docker-php-ext-configure intl \ && docker-php-ext-install -j$(nproc) intl \ - && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ + && docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ --with-png=/usr/include/ \ && docker-php-ext-install -j$(nproc) gd \ && docker-php-ext-install pdo pdo_mysql mysqli \ && docker-php-ext-install calendar \