@@ -47,8 +47,8 @@ docker-php-ext-install -j$(nproc) \
4747 opcache \
4848 pgsql \
4949 soap \
50- xsl \
51- xmlrpc
50+ xsl
51+ # xmlrpc -- not existing as of 8.0.0alpha3
5252
5353# GD.
5454docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/
@@ -59,8 +59,8 @@ docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/
5959docker-php-ext-install -j$( nproc) ldap
6060
6161# Memcached, MongoDB, Redis, APCu, igbinary.
62- pecl install memcached mongodb redis apcu igbinary uuid
63- docker-php-ext-enable memcached mongodb redis apcu igbinary uuid
62+ # pecl install memcached mongodb redis apcu igbinary uuid -- pecl not existing as of 8.0.0alpha3
63+ # docker-php-ext-enable memcached mongodb redis apcu igbinary uuid -- pecl not existing as of 8.0.0alpha3
6464
6565# ZIP
6666docker-php-ext-configure zip --with-zip
@@ -79,15 +79,15 @@ echo 'apc.enable_cli = On' >> /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini
7979# References:
8080# - https://github.com/moodlehq/moodle-php-apache/issues/16 (part of the php72 image discussion)
8181# - https://github.com/moodlehq/moodle-php-apache/issues/19 (awaiting for a better solution)
82- /tmp/setup/solr-extension.sh
82+ # /tmp/setup/solr-extension.sh -- pecl not existing as of 8.0.0alpha3
8383
8484# Install Microsoft dependencies for sqlsrv.
8585# (kept apart for clarity, still need to be run here
8686# before some build packages are deleted)
87- /tmp/setup/sqlsrv-extension.sh
87+ # /tmp/setup/sqlsrv-extension.sh -- pecl not existing as of 8.0.0alpha3
8888
8989# Keep our image size down..
90- pecl clear-cache
90+ # pecl clear-cache -- pecl not existing as of 8.0.0alpha3
9191apt-get remove --purge -y $BUILD_PACKAGES
9292apt-get autoremove -y
9393apt-get clean
0 commit comments