summaryrefslogtreecommitdiffstats
path: root/Dockerfile-alpine.template
diff options
context:
space:
mode:
authorRobert Dailey <rcdailey@gmail.com>2018-12-10 18:06:21 -0600
committerRobert Dailey <rcdailey@gmail.com>2018-12-12 13:44:27 -0600
commit2f90715d31ddfc0983ab6b55918ee8078e506f0b (patch)
tree4b10faa5ca06a0137e26ce477ff1f5788774f71a /Dockerfile-alpine.template
parent783232840a16a3f9100da526edf8ca597800ac2a (diff)
Add imagick php extension
There is a warning issued in Nextcloud 15 about 'imagick' php extension not being present. They highly recommend that it be installed. Fixes #574, fixes #263 Signed-off-by: Robert Dailey <rcdailey@gmail.com>
Diffstat (limited to 'Dockerfile-alpine.template')
-rw-r--r--Dockerfile-alpine.template3
1 files changed, 3 insertions, 0 deletions
diff --git a/Dockerfile-alpine.template b/Dockerfile-alpine.template
index 6683f2b1..4d282f54 100644
--- a/Dockerfile-alpine.template
+++ b/Dockerfile-alpine.template
@@ -27,6 +27,7 @@ RUN set -ex; \
openldap-dev \
pcre-dev \
postgresql-dev \
+ imagemagick-dev \
; \
\
docker-php-ext-configure gd --with-freetype-dir=/usr --with-png-dir=/usr --with-jpeg-dir=/usr; \
@@ -47,11 +48,13 @@ RUN set -ex; \
pecl install APCu-%%APCU_VERSION%%; \
pecl install memcached-%%MEMCACHED_VERSION%%; \
pecl install redis-%%REDIS_VERSION%%; \
+ pecl install imagick-%%IMAGICK_VERSION%%; \
\
docker-php-ext-enable \
apcu \
memcached \
redis \
+ imagick \
; \
\
runDeps="$( \