Skip to content

Commit

Permalink
Fix code coverage reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasnoback committed Jan 29, 2019
1 parent 4efef98 commit 68b6147
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker/php72/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,11 @@ RUN php -m | grep sqlite
RUN docker-php-ext-install pdo pdo_mysql \
&& php -m | grep mysql

# Install Xdebug (for code coverage)
RUN apk add --no-cache --virtual .build-dependencies $PHPIZE_DEPS \
&& pecl install xdebug \
&& docker-php-ext-enable xdebug \
&& apk --no-cache del .build-dependencies \
&& php -m | grep xdebug

WORKDIR /app

0 comments on commit 68b6147

Please sign in to comment.