php/Dockerfile.phptest

13 lines
325 B
Docker
Raw Normal View History

2021-07-06 06:08:35 +00:00
# NAME leenooks/php
# VERSION 8.0-fpm-test
2021-07-16 07:17:57 +00:00
FROM registry.leenooks.net/leenooks/php:8.0-fpm-image
2021-07-06 06:08:35 +00:00
RUN pecl install xdebug \
&& docker-php-ext-enable xdebug
RUN apt-get update && apt-get install -y npm \
&& apt-get -y autoremove \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*