7 lines
114 B
Docker
7 lines
114 B
Docker
FROM php:7.3.24-apache-buster
|
|
|
|
RUN set -eux; \
|
|
pecl install xdebug-2.9.8; \
|
|
docker-php-ext-enable xdebug
|
|
|