From: mathieu.brunot Date: Sat, 1 Jun 2019 13:22:15 +0000 (+0200) Subject: :arrow_up: Upgrade to php 7.2 to fix #47 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=ec79b577b45e502fd2ee3a4a3af9a06c2cbff4b0;p=roundcube-roundcubemail-docker.git :arrow_up: Upgrade to php 7.2 to fix #47 --- diff --git a/README.md b/README.md index f4a0711..30086df 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ For example, it may be used to increase the PHP memory limit (`memory_limit=128M ## Building a Docker image Use the `Dockerfile` in this repository to build your own Docker image. -It pulls the latest build of Roundcube Webmail from the Github download page and builds it on top of a `php:7.1-apache` Docker image. +It pulls the latest build of Roundcube Webmail from the Github download page and builds it on top of a `php:7.2-apache` Docker image. Build it from this directory with diff --git a/php-apache/Dockerfile b/php-apache/Dockerfile index 7c97db3..f199ce9 100644 --- a/php-apache/Dockerfile +++ b/php-apache/Dockerfile @@ -1,4 +1,4 @@ -FROM php:7.1-apache +FROM php:7.2-apache LABEL maintainer="Thomas Bruederli " RUN set -ex; \ diff --git a/php-fpm/Dockerfile b/php-fpm/Dockerfile index ab73e38..12233e7 100644 --- a/php-fpm/Dockerfile +++ b/php-fpm/Dockerfile @@ -1,4 +1,4 @@ -FROM php:7.1-fpm +FROM php:7.2-fpm LABEL maintainer="Thomas Bruederli " RUN set -ex; \