From d16954eed69078cd8faf524670bca862f7eb9ab1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Umut=20I=C5=9F=C4=B1k?= Date: Thu, 30 Jan 2025 00:42:18 +0300 Subject: [PATCH] Remove infection --- images/8.4/Dockerfile | 4 ++-- images/8.4/Dockerfile-alpine | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/images/8.4/Dockerfile b/images/8.4/Dockerfile index 86977fd..67c2023 100644 --- a/images/8.4/Dockerfile +++ b/images/8.4/Dockerfile @@ -129,8 +129,8 @@ RUN mkdir -p /tools/edsonmedina/php_testability && \ RUN composer global config --no-plugins allow-plugins.ergebnis/composer-normalize true && composer global require ergebnis/composer-normalize # Install infection/infection for mutation testing -RUN pecl install xdebug-3.3.0alpha3 && docker-php-ext-enable xdebug -RUN composer global config --no-plugins allow-plugins.infection/extension-installer true && composer global require infection/infection +# RUN pecl install xdebug-3.3.0alpha3 && docker-php-ext-enable xdebug +# RUN composer global config --no-plugins allow-plugins.infection/extension-installer true && composer global require infection/infection # Install Deptrac RUN mkdir -p /tools/deptrac && \ diff --git a/images/8.4/Dockerfile-alpine b/images/8.4/Dockerfile-alpine index 0dc4bd1..c0bf413 100644 --- a/images/8.4/Dockerfile-alpine +++ b/images/8.4/Dockerfile-alpine @@ -128,9 +128,9 @@ RUN mkdir -p /tools/edsonmedina/php_testability && \ RUN composer global config --no-plugins allow-plugins.ergebnis/composer-normalize true && composer global require ergebnis/composer-normalize # Install infection/infection for mutation testing -RUN apk add --update linux-headers && rm -rf /var/cache/apk/* -RUN pecl install xdebug-3.3.0alpha3 && docker-php-ext-enable xdebug && docker-php-ext-configure zip && docker-php-ext-install zip -RUN composer global config --no-plugins allow-plugins.infection/extension-installer true && composer global require infection/infection +# RUN apk add --update linux-headers && rm -rf /var/cache/apk/* +# RUN pecl install xdebug-3.3.0alpha3 && docker-php-ext-enable xdebug && docker-php-ext-configure zip && docker-php-ext-install zip +# RUN composer global config --no-plugins allow-plugins.infection/extension-installer true && composer global require infection/infection # Install Deptrac RUN mkdir -p /tools/deptrac && \