You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
278 B
Plaintext
8 lines
278 B
Plaintext
11 months ago
|
FROM php:7.2-cli
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install libmagickwand-dev --no-install-recommends -qy && \
|
||
|
rm -rf /var/lib/apt/lists/* && \
|
||
|
ln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h && \
|
||
|
pecl install imagick && docker-php-ext-enable imagick
|