9 wiersze
224 B
Plaintext
9 wiersze
224 B
Plaintext
![]() |
FROM php:7.1-fpm-alpine
|
||
|
|
||
|
# php configuration
|
||
|
COPY php.ini /usr/local/etc/php/
|
||
|
|
||
|
# Xdebug configuration
|
||
|
RUN apk add --no-cache $PHPIZE_DEPS # dependencies needed by pecl
|
||
|
RUN pecl install xdebug && docker-php-ext-enable xdebug
|