Skip to content

Commit 56e953d

Browse files
committed
fix: update xdebug
1 parent c8cbe49 commit 56e953d

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

Dockerfiles/mods/Dockerfile-8.5

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,15 @@ RUN set -eux \
857857
# Installation: Generic
858858
# Type: PECL extension
859859
# Default: Pecl command
860-
&& pecl install xdebug \
860+
#&& 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 \
861869
# Enabling
862870
&& docker-php-ext-enable xdebug \
863871
&& true

0 commit comments

Comments
 (0)