From b2ef34ae7983476b55afb20bbb37a60666e8ebcf Mon Sep 17 00:00:00 2001
From: Erick Hitter <git-contrib@ethitter.com>
Date: Sun, 12 Jun 2022 13:23:11 -0700
Subject: [PATCH] Test adding disabled Xdebug

---
 php/8.0/Dockerfile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/php/8.0/Dockerfile b/php/8.0/Dockerfile
index fd6f28d..e063f48 100644
--- a/php/8.0/Dockerfile
+++ b/php/8.0/Dockerfile
@@ -8,7 +8,9 @@ RUN apt-get update \
     && apt-get clean \
     && rm -rf /var/lib/apt/lists/*
 
-RUN docker-php-ext-install mbstring mysqli intl gd zip bz2 xdebug && sudo phpdismod xdebug
+RUN docker-php-ext-install mbstring mysqli intl gd zip bz2 \
+    && pecl install xdebug \
+    && sudo phpdismod xdebug
 
 SHELL ["/bin/bash", "-o", "pipefail", "-c"]
 RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
-- 
GitLab