php/Dockerfile.phptest

13 lines
326 B
Docker
Raw Normal View History

2021-07-06 05:36:16 +00:00
# NAME leenooks/php
# VERSION 8.0-fpm-test
2021-07-16 07:17:15 +00:00
FROM registry.leenooks.net/leenooks/php:8.0-fpm-server
2021-07-06 05:36:16 +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/*