php/Dockerfile.phptest

13 lines
323 B
Docker
Raw Permalink Normal View History

2021-06-15 12:43:34 +00:00
# NAME leenooks/php
# VERSION 8.0-fpm-test
FROM registry.leenooks.net/leenooks/php:8.0-fpm-ext
2021-06-15 12:43:34 +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/*