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