mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-24 20:34:10 +02:00
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>
This commit is contained in:
parent
783232840a
commit
2f90715d31
15 changed files with 41 additions and 11 deletions
|
@ -33,6 +33,7 @@ RUN set -ex; \
|
|||
libpng-dev \
|
||||
libpq-dev \
|
||||
libxml2-dev \
|
||||
libmagickwand-dev \
|
||||
; \
|
||||
\
|
||||
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
|
||||
|
@ -54,11 +55,13 @@ RUN set -ex; \
|
|||
pecl install APCu-5.1.15; \
|
||||
pecl install memcached-3.0.4; \
|
||||
pecl install redis-4.2.0; \
|
||||
pecl install imagick-3.4.3; \
|
||||
\
|
||||
docker-php-ext-enable \
|
||||
apcu \
|
||||
memcached \
|
||||
redis \
|
||||
imagick \
|
||||
; \
|
||||
\
|
||||
# reset apt-mark's "manual" list so that "purge --auto-remove" will remove all build dependencies
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue