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 52a82b4 commit a87c2c1Copy full SHA for a87c2c1
layers/fpm-dev/Dockerfile
@@ -10,8 +10,8 @@ ARG PHP_VERSION
10
RUN mkdir -p /opt/bref/extensions
11
12
# Install xdebug
13
-RUN pecl install xdebug-3.4.5
14
-RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions
+RUN if [ $PHP_VERSION != "85" ]; then pecl install xdebug-3.4.5; fi
+RUN if [ $PHP_VERSION != "85" ]; then cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions; fi
15
16
# Install Blackfire
17
# 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
0 commit comments