Skip to content

Instantly share code, notes, and snippets.

@johndatserakis
Last active December 7, 2023 12:01
Show Gist options
  • Star 26 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save johndatserakis/825a16a7f3cef4e8b4dbfbb1e80b9f9c to your computer and use it in GitHub Desktop.
Save johndatserakis/825a16a7f3cef4e8b4dbfbb1e80b9f9c to your computer and use it in GitHub Desktop.
Install imagick In Docker FROM php:7.1-fpm-alpine

docker-library/php#105

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
@mlocati
Copy link

mlocati commented Dec 13, 2019

Just a side note: I recently added Alpine support to my install-php-extensions script: you can easily install the imagick PHP extension (as well as many other extensions) on Alpine & Debian by running:

ADD https://raw.githubusercontent.com/mlocati/docker-php-extension-installer/master/install-php-extensions /usr/local/bin/

RUN chmod uga+x /usr/local/bin/install-php-extensions && sync && \
    install-php-extensions imagick

@peter279k
Copy link

To install and build the imagemagick extension, the Dockerfile contents are as follows:

FROM php:7.1-fpm-alpine

RUN set -ex && \
        apk add --no-cache --virtual .build-deps \
        libxml2-dev \
        shadow \
        autoconf \
        g++ \
        make \
    && apk add --no-cache imagemagick-dev imagemagick libjpeg-turbo libgomp freetype-dev \
    && pecl install imagick \
    && docker-php-ext-enable imagick \
    && apk del .build-deps
CMD ["php-fpm"]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment