Fix GD "Unable to init from given binary data"
Fix: Intervention\Image\Exception\NotReadableException: Unable to init from given binary data. in /var/www/vendor/intervention/image/src/Intervention/Image/Gd/Decoder.php:115
This commit is contained in:
parent
5465f96267
commit
64f3202c94
|
@ -62,7 +62,8 @@ fi
|
|||
#Install GD package:
|
||||
ARG INSTALL_GD=false
|
||||
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 \
|
||||
;fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue