We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6175938 commit 9f20e01Copy full SHA for 9f20e01
1 file changed
frankenphp/Dockerfile
@@ -17,6 +17,10 @@ COPY --from=drupal:php8.4 /opt/drupal /opt/drupal
17
COPY --from=drupal:php8.4 /usr/local/etc/php/conf.d/* /usr/local/etc/php/conf.d/
18
COPY --from=composer/composer:2-bin /composer /usr/local/bin/
19
20
+# install Xdebug, from https://xdebug.org/docs/install
21
+RUN pecl install xdebug \
22
+ && docker-php-ext-enable xdebug
23
+
24
# enable Xdebug remote debugging
25
RUN { \
26
echo 'xdebug.mode=debug'; \
0 commit comments