From 5ddf30f13282af7f24d1ddfd86872ba5d91d24eb Mon Sep 17 00:00:00 2001 From: Symbioquine Date: Sun, 20 Dec 2020 08:34:06 -0800 Subject: [PATCH] Pin XDebug to version 2.9.8 * Why: XDebug >= 3 has many breaking changes which don't make sense to deal with in farmOS 7.x-1.x. --- docker/dev/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/dev/Dockerfile b/docker/dev/Dockerfile index 878a7b581..cef9c47dd 100644 --- a/docker/dev/Dockerfile +++ b/docker/dev/Dockerfile @@ -8,7 +8,7 @@ ARG FARMOS_REPO=https://git.drupal.org/project/farm.git ARG FARMOS_BRANCH=7.x-1.x # Install Xdebug. -RUN yes | pecl install xdebug \ +RUN yes | pecl install xdebug-2.9.8 \ && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.remote_autostart=off" >> /usr/local/etc/php/conf.d/xdebug.ini