update php build to include basic php7.3

updated robo build
This commit is contained in:
2020-04-19 11:24:26 -04:00
parent 94d7b04002
commit 33e945f662
15 changed files with 129 additions and 113 deletions

View File

@@ -0,0 +1,18 @@
FROM php:7.3-fpm
MAINTAINER Richard Morgan <r_morgan@sympatico.ca>
WORKDIR /opt/project
#CMD ["/usr/sbin/php-fpm7.3", "-F"]
COPY ./docker-php-fpm.conf /etc/php/7.3fpm/pool.d/www.conf
RUN pecl install redis-5.1.1 \
&& pecl install memcached-3.1.5 \
&& pecl install apcu-5.1.18 \
&& docker-php-ext-enable redis memcached apcu
RUN docker-php-ext-install mysql pgsql cli curl mcrypt zip mbstring xml
RUN docker-php-ext-enable mysql pgsql cli curl mcrypt zip mbstring xml