Update test Dockerifle

This commit is contained in:
Deon George 2022-01-06 10:48:18 +11:00
parent 0a92327117
commit 9c00fd3eb5
1 changed files with 7 additions and 5 deletions

View File

@ -1,12 +1,14 @@
# NAME leenooks/php
# VERSION 8.0-fpm-test
# VERSION 8.0-fpm-server-test
FROM registry.leenooks.net/leenooks/php:8.0-fpm-server
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/*
RUN mv /sbin/init /sbin/init.orig \
&& apt-get update && apt-get install -y npm \
&& apt-get -y autoremove \
&& apt-get clean \
&& mv /sbin/init.orig /sbin/init \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*