From fae9a1f9522d113db2f7ff279311c80fffcce8e7 Mon Sep 17 00:00:00 2001 From: colin Date: Wed, 13 Nov 2024 07:56:19 -0500 Subject: [PATCH] Update docker/7.2-apache/Dockerfile --- docker/7.2-apache/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/7.2-apache/Dockerfile b/docker/7.2-apache/Dockerfile index ed1b7b8..ff0eba9 100644 --- a/docker/7.2-apache/Dockerfile +++ b/docker/7.2-apache/Dockerfile @@ -20,7 +20,7 @@ RUN apt-get update && apt-get install -y \ # Enable and configure PHP modules RUN docker-php-ext-configure intl && \ docker-php-ext-install intl && \ - docker-php-ext-configure gd --with-freetype --with-jpeg && \ + docker-php-ext-configure gd --with-freetype-dir=/usr/include/freetype2 --with-jpeg-dir=/usr/include && \ docker-php-ext-install -j$(nproc) gd && \ docker-php-ext-install mysqli zip pdo_mysql bcmath && \ docker-php-ext-install opcache