We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8cbe49 commit 56e953dCopy full SHA for 56e953d
1 file changed
Dockerfiles/mods/Dockerfile-8.5
@@ -857,7 +857,15 @@ RUN set -eux \
857
# Installation: Generic
858
# Type: PECL extension
859
# Default: Pecl command
860
- && pecl install xdebug \
+ #&& pecl install xdebug \
861
+ # Type: GIT extension
862
+ && git clone https://github.com/xdebug/xdebug /tmp/xdebug \
863
+ && cd /tmp/xdebug \
864
+ # Default: Install command
865
+ && phpize \
866
+ && ./configure \
867
+ && make -j$(getconf _NPROCESSORS_ONLN) \
868
+ && make install \
869
# Enabling
870
&& docker-php-ext-enable xdebug \
871
&& true
0 commit comments