Merge pull request #115 from Hugome/master

Add jpeg gd support thanks to @Hugome
This commit is contained in:
Ric Harvey
2017-02-17 09:48:13 +00:00
committed by GitHub

View File

@@ -158,7 +158,14 @@ RUN echo @testing http://nl.alpinelinux.org/alpine/edge/testing >> /etc/apk/repo
icu-dev \
libpq \
libxslt-dev \
libffi-dev &&\
libffi-dev \
freetype-dev \
libjpeg-turbo-dev && \
docker-php-ext-configure gd \
--with-gd \
--with-freetype-dir=/usr/include/ \
--with-png-dir=/usr/include/ \
--with-jpeg-dir=/usr/include/ && \
#curl iconv session
docker-php-ext-install pdo_mysql mysqli mcrypt gd exif intl xsl json soap dom zip && \
mkdir -p /etc/nginx && \