Skip to content

Commit

Permalink
chore: Support PECL
Browse files Browse the repository at this point in the history
  • Loading branch information
bestlong committed Oct 11, 2023
1 parent 3a1c8fa commit 76f4fcf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,13 @@ RUN set -eux; \
if [ $(php -r "echo PHP_MAJOR_VERSION;") != "8" ]; then \
apt-get install -y php${PHP_TAG_VERSION}-xmlrpc; \
php -m | grep -oiE '^xmlrpc$'; \
fi
fi; \
# RUN set -eux; docker-php-ext-install xsl
# RUN set -eux; docker-php-ext-install zend_test
### PECL
apt-get install -y php${PHP_TAG_VERSION}-dev; \
apt-get install -y php-pear; \
pecl channel-update pecl.php.net

RUN php${PHP_TAG_VERSION} -m

Expand Down

0 comments on commit 76f4fcf

Please sign in to comment.