php/Dockerfile.phptest

13 lines
322 B
Docker
Raw Permalink Normal View History

2020-08-23 02:54:50 +00:00
# NAME leenooks/php
2021-03-03 02:53:44 +00:00
# VERSION 8.0-fpm-test
2020-08-23 02:54:50 +00:00
2021-03-03 02:53:44 +00:00
FROM registry.leenooks.net/leenooks/php:8.0-fpm-mp
2020-08-23 02:54:50 +00:00
2020-08-24 05:51:21 +00:00
RUN pecl install xdebug \
2020-08-24 05:39:43 +00:00
&& docker-php-ext-enable xdebug
2020-10-15 01:28:50 +00:00
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/*