0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-20 02:46:10 +02:00

use php 7.1.13-apache image

to fix some issues with php 7.1.12
https://help.nextcloud.com/t/php-error-narrowing-occurred-during-type-inference/24010/15
This commit is contained in:
mr-bolle 2018-01-20 12:57:56 +01:00 committed by GitHub
parent 92b4b87a64
commit 4b65829b0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
FROM php:7.1-apache
FROM php:7.1.13-apache
RUN set -ex; \
apt-get update; \
@ -87,6 +87,7 @@ RUN set -ex; \
chmod +x /usr/src/nextcloud/occ
COPY docker-entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
COPY config/* /usr/src/nextcloud/config/
ENTRYPOINT ["/entrypoint.sh"]