Old
RUN docker-php-ext-configure gd
--with-mysqli=/opt/mysql/bin/mysql_config 
--with-pdo-mysql=/opt/mysql 
--with-gd
--with-xpm-dir
--with-libxml-dir
--enable-zip
--with-png-dir=/usr/include/
--with-jpeg-dir=/usr/include/
--with-freetype-dir=/usr/include/
 
New
RUN docker-php-ext-configure gd
--with-mysqli=mysqlnd 
--with-pdo-mysql=mysqlnd
--enable-gd/
--with-xpm
--with-libxml
--with-zip
--with-png=/usr/include/
--with-jpeg=/usr/include/
--with-freetype=/usr/include/

 

+ Recent posts