php-common-dev/docker/Dockerfile
2023-08-11 21:55:16 +09:00

17 lines
348 B
Docker

FROM php:7.4-apache
RUN apt-get update && apt-get install -y \
vim \
zip \
unzip
# composerのインストール
RUN cd /usr/bin && curl -s http://getcomposer.org/installer | php && ln -s /usr/bin/composer.phar /usr/bin/composer
# install xdebug
RUN pecl install xdebug-2.9.8 \
&& docker-php-ext-enable xdebug