From e7fd79570d6ff435a5aaf3d231ecd9616d886661 Mon Sep 17 00:00:00 2001 From: Alan Nelson <alan.nelson@nebraska.edu> Date: Tue, 23 Feb 2021 18:21:12 -0600 Subject: [PATCH] Update pecl channel --- php-unit-test/5.6/Dockerfile | 1 + php-unit-test/7.0/Dockerfile | 1 + php-unit-test/7.1/Dockerfile | 1 + php-unit-test/7.2/Dockerfile | 1 + php-unit-test/7.3/Dockerfile | 1 + 5 files changed, 5 insertions(+) diff --git a/php-unit-test/5.6/Dockerfile b/php-unit-test/5.6/Dockerfile index 6b1c64e..2efbdb1 100644 --- a/php-unit-test/5.6/Dockerfile +++ b/php-unit-test/5.6/Dockerfile @@ -13,6 +13,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \ maintainer="Alan Nelson <alan.nelson@nebraska.edu>" RUN apk add --no-cache bash nodejs nodejs-npm $PHPIZE_DEPS \ + && pecl channel-update pecl.php.net \ && pecl install xdebug-2.5.0 \ && docker-php-ext-enable xdebug \ && apk del --no-cache $PHPIZE_DEPS diff --git a/php-unit-test/7.0/Dockerfile b/php-unit-test/7.0/Dockerfile index 5d8faaf..d39c4b0 100644 --- a/php-unit-test/7.0/Dockerfile +++ b/php-unit-test/7.0/Dockerfile @@ -13,6 +13,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \ maintainer="Alan Nelson <alan.nelson@nebraska.edu>" RUN apk add --no-cache bash nodejs nodejs-npm $PHPIZE_DEPS \ + && pecl channel-update pecl.php.net \ && pecl install xdebug-2.9.0 \ && docker-php-ext-enable xdebug \ && apk del --no-cache $PHPIZE_DEPS diff --git a/php-unit-test/7.1/Dockerfile b/php-unit-test/7.1/Dockerfile index 39f35b9..7d16f19 100644 --- a/php-unit-test/7.1/Dockerfile +++ b/php-unit-test/7.1/Dockerfile @@ -13,6 +13,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \ maintainer="Alan Nelson <alan.nelson@nebraska.edu>" RUN apk add --no-cache bash nodejs nodejs-npm libmcrypt-dev $PHPIZE_DEPS \ + && pecl channel-update pecl.php.net \ && pecl install xdebug redis \ && docker-php-ext-enable xdebug redis \ && docker-php-ext-install mcrypt \ diff --git a/php-unit-test/7.2/Dockerfile b/php-unit-test/7.2/Dockerfile index cf2dbb9..3f5705d 100644 --- a/php-unit-test/7.2/Dockerfile +++ b/php-unit-test/7.2/Dockerfile @@ -13,6 +13,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \ maintainer="Alan Nelson <alan.nelson@nebraska.edu>" RUN apk add --no-cache bash nodejs nodejs-npm $PHPIZE_DEPS \ + && pecl channel-update pecl.php.net \ && pecl install xdebug redis \ && docker-php-ext-enable xdebug redis \ && apk del --no-cache $PHPIZE_DEPS diff --git a/php-unit-test/7.3/Dockerfile b/php-unit-test/7.3/Dockerfile index cac62c0..244fc6a 100644 --- a/php-unit-test/7.3/Dockerfile +++ b/php-unit-test/7.3/Dockerfile @@ -13,6 +13,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \ maintainer="Alan Nelson <alan.nelson@nebraska.edu>" RUN apk add --no-cache bash nodejs nodejs-npm $PHPIZE_DEPS \ + && pecl channel-update pecl.php.net \ && pecl install xdebug redis \ && docker-php-ext-enable xdebug redis \ && apk del --no-cache $PHPIZE_DEPS -- GitLab