From b3e21a3294f87ab7d7ad4e90c915ed9a059aeea3 Mon Sep 17 00:00:00 2001 From: eduard13 Date: Wed, 26 Jan 2022 08:59:18 +0200 Subject: [PATCH] Updating gd library options --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 064481b..cf66d81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,7 +40,7 @@ RUN apt-get update -q; \ RUN docker-php-ext-install -j$(nproc) bcmath intl opcache pdo_mysql soap xsl zip iconv sockets RUN pecl install mcrypt-1.0.3 RUN docker-php-ext-enable mcrypt -RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ +RUN docker-php-ext-configure gd --with-freetype --with-jpeg \ && docker-php-ext-install -j$(nproc) gd RUN pecl install xdebug-2.9.2 RUN apt-get clean -qy; \