diff --git a/7.1/alpine3.8/cli/Dockerfile b/7.1/alpine3.8/cli/Dockerfile index 6ec04deb..cd690c24 100644 --- a/7.1/alpine3.8/cli/Dockerfile +++ b/7.1/alpine3.8/cli/Dockerfile @@ -165,9 +165,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/alpine3.8/fpm/Dockerfile b/7.1/alpine3.8/fpm/Dockerfile index b511467b..2ffdedf0 100644 --- a/7.1/alpine3.8/fpm/Dockerfile +++ b/7.1/alpine3.8/fpm/Dockerfile @@ -166,9 +166,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/alpine3.8/zts/Dockerfile b/7.1/alpine3.8/zts/Dockerfile index f1f0506b..523b9fe4 100644 --- a/7.1/alpine3.8/zts/Dockerfile +++ b/7.1/alpine3.8/zts/Dockerfile @@ -166,9 +166,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/alpine3.9/cli/Dockerfile b/7.1/alpine3.9/cli/Dockerfile index 17927add..7ac2d91f 100644 --- a/7.1/alpine3.9/cli/Dockerfile +++ b/7.1/alpine3.9/cli/Dockerfile @@ -165,9 +165,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/alpine3.9/fpm/Dockerfile b/7.1/alpine3.9/fpm/Dockerfile index 43076108..bb646a34 100644 --- a/7.1/alpine3.9/fpm/Dockerfile +++ b/7.1/alpine3.9/fpm/Dockerfile @@ -166,9 +166,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/alpine3.9/zts/Dockerfile b/7.1/alpine3.9/zts/Dockerfile index 627d5a97..5dc45d76 100644 --- a/7.1/alpine3.9/zts/Dockerfile +++ b/7.1/alpine3.9/zts/Dockerfile @@ -166,9 +166,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/jessie/apache/Dockerfile b/7.1/jessie/apache/Dockerfile index 82afb24b..a1e98aa1 100644 --- a/7.1/jessie/apache/Dockerfile +++ b/7.1/jessie/apache/Dockerfile @@ -249,11 +249,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/jessie/cli/Dockerfile b/7.1/jessie/cli/Dockerfile index 8473db1d..6eb85949 100644 --- a/7.1/jessie/cli/Dockerfile +++ b/7.1/jessie/cli/Dockerfile @@ -189,11 +189,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/jessie/fpm/Dockerfile b/7.1/jessie/fpm/Dockerfile index 6b52a8b9..4305cd2f 100644 --- a/7.1/jessie/fpm/Dockerfile +++ b/7.1/jessie/fpm/Dockerfile @@ -190,11 +190,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/jessie/zts/Dockerfile b/7.1/jessie/zts/Dockerfile index a123e3fd..ba0f03af 100644 --- a/7.1/jessie/zts/Dockerfile +++ b/7.1/jessie/zts/Dockerfile @@ -190,11 +190,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/stretch/apache/Dockerfile b/7.1/stretch/apache/Dockerfile index 9a6dbe2c..323dce49 100644 --- a/7.1/stretch/apache/Dockerfile +++ b/7.1/stretch/apache/Dockerfile @@ -249,11 +249,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/stretch/cli/Dockerfile b/7.1/stretch/cli/Dockerfile index d4da5775..c178dfac 100644 --- a/7.1/stretch/cli/Dockerfile +++ b/7.1/stretch/cli/Dockerfile @@ -189,11 +189,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/stretch/fpm/Dockerfile b/7.1/stretch/fpm/Dockerfile index 61691b7a..8e4ac493 100644 --- a/7.1/stretch/fpm/Dockerfile +++ b/7.1/stretch/fpm/Dockerfile @@ -190,11 +190,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.1/stretch/zts/Dockerfile b/7.1/stretch/zts/Dockerfile index 187858bf..9d2e696a 100644 --- a/7.1/stretch/zts/Dockerfile +++ b/7.1/stretch/zts/Dockerfile @@ -190,11 +190,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.2/alpine3.8/cli/Dockerfile b/7.2/alpine3.8/cli/Dockerfile index d15517ca..bb7f04c7 100644 --- a/7.2/alpine3.8/cli/Dockerfile +++ b/7.2/alpine3.8/cli/Dockerfile @@ -171,9 +171,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.2/alpine3.8/fpm/Dockerfile b/7.2/alpine3.8/fpm/Dockerfile index ec8f58cb..6391f922 100644 --- a/7.2/alpine3.8/fpm/Dockerfile +++ b/7.2/alpine3.8/fpm/Dockerfile @@ -172,9 +172,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.2/alpine3.8/zts/Dockerfile b/7.2/alpine3.8/zts/Dockerfile index 98765397..4fabf090 100644 --- a/7.2/alpine3.8/zts/Dockerfile +++ b/7.2/alpine3.8/zts/Dockerfile @@ -172,9 +172,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.2/alpine3.9/cli/Dockerfile b/7.2/alpine3.9/cli/Dockerfile index cc17c65e..c8f7e39c 100644 --- a/7.2/alpine3.9/cli/Dockerfile +++ b/7.2/alpine3.9/cli/Dockerfile @@ -171,9 +171,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.2/alpine3.9/fpm/Dockerfile b/7.2/alpine3.9/fpm/Dockerfile index 21cb1951..21eb4dc1 100644 --- a/7.2/alpine3.9/fpm/Dockerfile +++ b/7.2/alpine3.9/fpm/Dockerfile @@ -172,9 +172,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.2/alpine3.9/zts/Dockerfile b/7.2/alpine3.9/zts/Dockerfile index 6032dc01..603297d0 100644 --- a/7.2/alpine3.9/zts/Dockerfile +++ b/7.2/alpine3.9/zts/Dockerfile @@ -172,9 +172,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.2/stretch/apache/Dockerfile b/7.2/stretch/apache/Dockerfile index 43104672..46146eb0 100644 --- a/7.2/stretch/apache/Dockerfile +++ b/7.2/stretch/apache/Dockerfile @@ -268,11 +268,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.2/stretch/cli/Dockerfile b/7.2/stretch/cli/Dockerfile index c38a9d0c..3a5669cc 100644 --- a/7.2/stretch/cli/Dockerfile +++ b/7.2/stretch/cli/Dockerfile @@ -208,11 +208,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.2/stretch/fpm/Dockerfile b/7.2/stretch/fpm/Dockerfile index 7bc43fe8..f2c4ef8e 100644 --- a/7.2/stretch/fpm/Dockerfile +++ b/7.2/stretch/fpm/Dockerfile @@ -209,11 +209,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.2/stretch/zts/Dockerfile b/7.2/stretch/zts/Dockerfile index 4e56edea..2eabca83 100644 --- a/7.2/stretch/zts/Dockerfile +++ b/7.2/stretch/zts/Dockerfile @@ -209,11 +209,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.3/alpine3.8/cli/Dockerfile b/7.3/alpine3.8/cli/Dockerfile index b2f2b7ea..c894341e 100644 --- a/7.3/alpine3.8/cli/Dockerfile +++ b/7.3/alpine3.8/cli/Dockerfile @@ -171,9 +171,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.3/alpine3.8/fpm/Dockerfile b/7.3/alpine3.8/fpm/Dockerfile index 95b99d7c..d633ece9 100644 --- a/7.3/alpine3.8/fpm/Dockerfile +++ b/7.3/alpine3.8/fpm/Dockerfile @@ -172,9 +172,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.3/alpine3.8/zts/Dockerfile b/7.3/alpine3.8/zts/Dockerfile index a5eac5a2..3c3e11c0 100644 --- a/7.3/alpine3.8/zts/Dockerfile +++ b/7.3/alpine3.8/zts/Dockerfile @@ -172,9 +172,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.3/alpine3.9/cli/Dockerfile b/7.3/alpine3.9/cli/Dockerfile index 85e40380..7f4e32b8 100644 --- a/7.3/alpine3.9/cli/Dockerfile +++ b/7.3/alpine3.9/cli/Dockerfile @@ -171,9 +171,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.3/alpine3.9/fpm/Dockerfile b/7.3/alpine3.9/fpm/Dockerfile index 158db678..4be41c86 100644 --- a/7.3/alpine3.9/fpm/Dockerfile +++ b/7.3/alpine3.9/fpm/Dockerfile @@ -172,9 +172,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.3/alpine3.9/zts/Dockerfile b/7.3/alpine3.9/zts/Dockerfile index be110b2e..615cb4cf 100644 --- a/7.3/alpine3.9/zts/Dockerfile +++ b/7.3/alpine3.9/zts/Dockerfile @@ -172,9 +172,11 @@ RUN set -xe \ \ && apk del --no-network .build-deps \ \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 && pecl update-channels \ - && rm -rf /tmp/pear ~/.pearrc + && rm -rf /tmp/pear ~/.pearrc \ +# smoke test + && php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.3/stretch/apache/Dockerfile b/7.3/stretch/apache/Dockerfile index 333a5cd9..eab40b98 100644 --- a/7.3/stretch/apache/Dockerfile +++ b/7.3/stretch/apache/Dockerfile @@ -268,11 +268,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.3/stretch/cli/Dockerfile b/7.3/stretch/cli/Dockerfile index 28248d3b..7674156b 100644 --- a/7.3/stretch/cli/Dockerfile +++ b/7.3/stretch/cli/Dockerfile @@ -208,11 +208,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.3/stretch/fpm/Dockerfile b/7.3/stretch/fpm/Dockerfile index b8ef1193..bc36c2ae 100644 --- a/7.3/stretch/fpm/Dockerfile +++ b/7.3/stretch/fpm/Dockerfile @@ -209,11 +209,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ diff --git a/7.3/stretch/zts/Dockerfile b/7.3/stretch/zts/Dockerfile index 0b3fc8d1..561a5756 100644 --- a/7.3/stretch/zts/Dockerfile +++ b/7.3/stretch/zts/Dockerfile @@ -209,11 +209,11 @@ RUN set -eux; \ ; \ apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ \ - php --version; \ - \ -# https://github.com/docker-library/php/issues/443 +# update pecl channel definitions https://github.com/docker-library/php/issues/443 pecl update-channels; \ - rm -rf /tmp/pear ~/.pearrc + rm -rf /tmp/pear ~/.pearrc; \ +# smoke test + php --version COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/