update php build to include basic php7.3
updated robo build
This commit is contained in:
18
dockerfiles/tasks/php/Dockerfile-7.3
Normal file
18
dockerfiles/tasks/php/Dockerfile-7.3
Normal 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
|
||||
Reference in New Issue
Block a user