RUN set -ex \
&& apk add --no-cache --virtual .phpize-deps $PHPIZE_DEPS imagemagick-dev libtool \
&& export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" \
&& pecl install imagick-3.4.3 \
&& docker-php-ext-enable imagick \
&& apk add --no-cache --virtual .imagick-runtime-deps imagemagick \
&& apk del .phpize-deps
Forked from johndatserakis/install-imagick-docker-php-7-1-alpine.md
Created
November 22, 2022 05:54
-
-
Save codeperl/ad611822bfb85b01bb17e70efb77ae43 to your computer and use it in GitHub Desktop.
Install imagick In Docker FROM php:7.1-fpm-alpine
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment