Fix GD "Unable to init from given binary data"
This commit is contained in:
parent
64f3202c94
commit
2467717f17
|
@ -56,7 +56,8 @@ RUN if [ ${INSTALL_BZ2} = true ]; then \
|
||||||
#Install GD package:
|
#Install GD package:
|
||||||
ARG INSTALL_GD=false
|
ARG INSTALL_GD=false
|
||||||
RUN if [ ${INSTALL_GD} = true ]; then \
|
RUN if [ ${INSTALL_GD} = true ]; then \
|
||||||
apk add --update --no-cache libpng-dev; \
|
apk add --update --no-cache freetype-dev libjpeg-turbo-dev jpeg-dev libpng-dev; \
|
||||||
|
docker-php-ext-configure gd --with-freetype-dir=/usr/lib/ --with-jpeg-dir=/usr/lib/ --with-png-dir=/usr/lib/ && \
|
||||||
docker-php-ext-install gd \
|
docker-php-ext-install gd \
|
||||||
;fi
|
;fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue