php/Dockerfile.phptest

13 lines
322 B
Docker
Raw Normal View History

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