From ac04eac3d068b5a8cbe70a6bee4a2bc751e8c677 Mon Sep 17 00:00:00 2001 From: Flavio Heleno Date: Mon, 21 Aug 2023 10:35:50 -0300 Subject: [PATCH] Update Xdebug to 3.2.2 --- docker/debug.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/debug.Dockerfile b/docker/debug.Dockerfile index 46c58141..15c24fb2 100644 --- a/docker/debug.Dockerfile +++ b/docker/debug.Dockerfile @@ -15,7 +15,7 @@ USER root #============================================ RUN docker-php-source extract && \ - wget -O xdebug.tar.gz https://github.com/xdebug/xdebug/archive/refs/tags/3.1.5.tar.gz && \ + wget -O xdebug.tar.gz https://github.com/xdebug/xdebug/archive/refs/tags/3.2.2.tar.gz && \ mkdir /usr/src/php/ext/xdebug && \ tar --extract --file xdebug.tar.gz --directory /usr/src/php/ext/xdebug --strip 1 && \ docker-php-ext-install -j$(nproc) xdebug && \ @@ -61,7 +61,7 @@ USER root #============================================ RUN docker-php-source extract && \ - wget -O xdebug.tar.gz https://github.com/xdebug/xdebug/archive/refs/tags/3.1.5.tar.gz && \ + wget -O xdebug.tar.gz https://github.com/xdebug/xdebug/archive/refs/tags/3.2.2.tar.gz && \ mkdir /usr/src/php/ext/xdebug && \ tar --extract --file xdebug.tar.gz --directory /usr/src/php/ext/xdebug --strip 1 && \ docker-php-ext-install -j$(nproc) xdebug && \