enable xdebug on integration test imagae
Some checks failed
PHPUnit / PHPUnit – PHP 8.1 (push) Failing after 56s
PHPUnit / PHPUnit – PHP 8.2 (push) Failing after 58s
PHPUnit / PHPUnit – PHP 8.3 (push) Failing after 51s

This commit is contained in:
André Menrath 2024-09-24 10:23:31 +02:00
parent 04b0e69af6
commit 515f79fd9c
2 changed files with 14 additions and 1 deletions

View file

@ -11,7 +11,18 @@ RUN apk update \
RUN docker-php-ext-install mysqli RUN docker-php-ext-install mysqli
# Install Composer # Install Xdebug
RUN apk add --no-cache $PHPIZE_DEPS \
&& apk add --update linux-headers \
&& pecl install xdebug \
&& docker-php-ext-enable xdebug \
&& apk del --purge $PHPIZE_DEPS \
&& echo "xdebug.start_with_request=yes" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& echo "xdebug.client_host=host.docker.internal" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& echo "xdebug.mode=debug" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
&& echo "xdebug.idekey=VSCODE" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
# Install Composer
RUN EXPECTED_CHECKSUM=$(curl -s https://composer.github.io/installer.sig) \ RUN EXPECTED_CHECKSUM=$(curl -s https://composer.github.io/installer.sig) \
&& curl https://getcomposer.org/installer -o composer-setup.php \ && curl https://getcomposer.org/installer -o composer-setup.php \
&& ACTUAL_CHECKSUM="$(php -r "echo hash_file('sha384', 'composer-setup.php');")" \ && ACTUAL_CHECKSUM="$(php -r "echo hash_file('sha384', 'composer-setup.php');")" \

View file

@ -29,3 +29,5 @@ services:
volumes: volumes:
- .:/app - .:/app
command: ["composer", "run-script", "test"] command: ["composer", "run-script", "test"]
extra_hosts:
- "host.docker.internal:host-gateway"