diff --git a/php/8.0/Dockerfile b/php/8.0/Dockerfile
index e063f4899dc845240eee4da3609de950d6471b1f..f132b841ba4437f4320a63c19566725d45f1fc3b 100644
--- a/php/8.0/Dockerfile
+++ b/php/8.0/Dockerfile
@@ -10,7 +10,8 @@ RUN apt-get update \
 
 RUN docker-php-ext-install mbstring mysqli intl gd zip bz2 \
     && pecl install xdebug \
-    && sudo phpdismod xdebug
+    && phpdismod xdebug \
+    && php -i
 
 SHELL ["/bin/bash", "-o", "pipefail", "-c"]
 RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer