0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-24 20:34:10 +02:00

Do "pecl install" in series so it fails properly

This commit is contained in:
J0WI 2018-06-01 14:00:10 +02:00 committed by Tilo Spannagel
parent cbd5bd17bc
commit 3b8aa7062a
No known key found for this signature in database
GPG key ID: B89F1626A58E1429
14 changed files with 84 additions and 70 deletions

View file

@ -49,11 +49,12 @@ RUN set -ex; \
pdo_pgsql \
zip \
; \
pecl install \
APCu-%%APCU_VERSION%% \
memcached-%%MEMCACHED_VERSION%% \
redis-%%REDIS_VERSION%% \
; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-%%APCU_VERSION%%; \
pecl install memcached-%%MEMCACHED_VERSION%%; \
pecl install redis-%%REDIS_VERSION%%; \
\
docker-php-ext-enable \
apcu \
memcached \