Skip to content

Commit

Permalink
Merge pull request #149 from sunaoka/feature/php-83-fpm-dev
Browse files Browse the repository at this point in the history
Installed xdebug with PHP 8.3.0
  • Loading branch information
mnapoli authored Dec 13, 2023
2 parents 9cff1f4 + a7287cd commit 44421d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layers/fpm-dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ ARG PHP_VERSION
RUN mkdir -p /opt/bref/extensions

# Install xdebug
RUN if [ $PHP_VERSION != "83" ]; then pecl install xdebug; fi
RUN if [ $PHP_VERSION != "83" ]; then cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions; fi
RUN pecl install xdebug
RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions

# Install Blackfire
# https://blackfire.io/docs/up-and-running/installation?action=install&mode=full&version=latest&mode=full&location=server&os=manual&language=php#install-the-php-probe
Expand Down

0 comments on commit 44421d8

Please sign in to comment.