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
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
Just a side note: I recently added Alpine support to my
install-php-extensions
script: you can easily install theimagick
PHP extension (as well as many other extensions) on Alpine & Debian by running: