Add building additional test container

This commit is contained in:
Deon George
2020-08-23 12:54:50 +10:00
parent d752fa113f
commit 74afe07a7b
2 changed files with 26 additions and 0 deletions

12
Dockerfile.phptest Executable file
View File

@@ -0,0 +1,12 @@
# NAME leenooks/php
# VERSION 7.4-fpm-mp
FROM registry.leenook.net/leenooks/php:7.4-fpm
RUN apt-get update && apt-get install -y autoconf \
&& pecl install xdebug \
&& docker-php-ext-enable xdebug \
&& apt-get purge autoonf \
&& apt-get -y autoremove \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \