You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
405 B
Docker
10 lines
405 B
Docker
FROM php:7.3-cli
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y unzip \
|
|
&& docker-php-ext-install pcntl \
|
|
&& pecl install xdebug \
|
|
&& echo "zend_extension=xdebug.so" > /usr/local/etc/php/conf.d/xdebug.ini \
|
|
&& echo "xdebug.mode=coverage" >> /usr/local/etc/php/conf.d/xdebug.ini \
|
|
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|