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 8cab2bb commit 3b64a92Copy full SHA for 3b64a92
layers/fpm-dev/Dockerfile
@@ -10,13 +10,8 @@ ARG PHP_VERSION
10
RUN mkdir -p /opt/bref/extensions
11
12
# Install xdebug
13
-if [[ $PHP_VERSION != "84" ]]; then
14
- pecl install xdebug-3.3.2
15
-else
16
- pecl install xdebug-3.4.0beta1
17
-fi
18
-
19
-cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions
+run if [[ $PHP_VERSION != "84" ]]; then pecl install xdebug-3.3.2; else pecl install xdebug-3.4.0beta1; fi
+RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions
20
21
# Install Blackfire
22
# 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