docker-volume-borg-backup/docker-vscode-php-xdebug/Dockerfile-php-app

10 wiersze
236 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
EXPOSE 9000