We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e43295b commit ed06f34Copy full SHA for ed06f34
docker/release/Dockerfile
@@ -2,6 +2,7 @@ FROM php:8.0.10-cli-alpine3.14
2
3
COPY --from=composer:2.1.6 /usr/bin/composer /usr/local/bin/composer
4
5
+ENV COMPOSER_HOME=/composer/common
6
ENV COMPOSER_HOME_SYMFONY_5_3=/composer/symfony-5-3
7
8
RUN \
@@ -17,6 +18,11 @@ RUN \
17
18
&& docker-php-ext-enable xdebug \
19
&& apk del .build-deps \
20
21
+ # Install infection
22
+ && composer global require infection/infection:0.24.* \
23
+ && ln -s ${COMPOSER_HOME}/vendor/bin/infection /usr/local/bin/infection \
24
+
25
+ # Install symfony components for coverage
26
&& COMPOSER_HOME=${COMPOSER_HOME_SYMFONY_5_3} \
27
composer global require symfony/console:5.3.* symfony/process:5.3.* \
28
0 commit comments