⬆️ Upgrade to php 7.2 to fix #47

This commit is contained in:
mathieu.brunot 2019-06-01 15:22:15 +02:00
parent 0a06b301cf
commit ec79b577b4
No known key found for this signature in database
GPG Key ID: 81584BEAF692D7E0
3 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ For example, it may be used to increase the PHP memory limit (`memory_limit=128M
## Building a Docker image ## Building a Docker image
Use the `Dockerfile` in this repository to build your own 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 Build it from this directory with

View File

@ -1,4 +1,4 @@
FROM php:7.1-apache FROM php:7.2-apache
LABEL maintainer="Thomas Bruederli <thomas@roundcube.net>" LABEL maintainer="Thomas Bruederli <thomas@roundcube.net>"
RUN set -ex; \ RUN set -ex; \

View File

@ -1,4 +1,4 @@
FROM php:7.1-fpm FROM php:7.2-fpm
LABEL maintainer="Thomas Bruederli <thomas@roundcube.net>" LABEL maintainer="Thomas Bruederli <thomas@roundcube.net>"
RUN set -ex; \ RUN set -ex; \