We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e440ad8 commit d884b14Copy full SHA for d884b14
1 file changed
Dockerfiles/mods/Dockerfile-8.5
@@ -755,7 +755,15 @@ RUN set -eux \
755
# Installation: Generic
756
# Type: PECL extension
757
# Default: Pecl command
758
- && pecl install solr \
+ #&& pecl install solr \
759
+ # Type: GIT extension
760
+ && git clone https://github.com/php/pecl-search_engine-solr /tmp/solr \
761
+ && cd /tmp/solr \
762
+ # Default: Install command
763
+ && phpize \
764
+ && ./configure \
765
+ && make -j$(getconf _NPROCESSORS_ONLN) \
766
+ && make install \
767
# Enabling
768
&& docker-php-ext-enable solr \
769
&& true
0 commit comments