fix: change gd build options for PHP 7.4

This commit is contained in:
Glenn Y. Rolland 2021-04-19 19:25:23 +02:00
parent 04430d40ab
commit be3de753c3

View file

@ -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 \