From 8eace7a3a85500bd885fe19a3826b03962734057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Jacquet?= Date: Thu, 20 Aug 2020 13:10:00 +0200 Subject: [PATCH] PHP 7.4 + version 6.9.4 update --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f7a1cfd..dfcb11f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # Best Dockerfile practices: http://crosbymichael.com/dockerfile-best-practices.html # https://hub.docker.com/_/php?tab=tags&page=1&name=apache -FROM php:7.3-apache +FROM php:7.4-apache LABEL maintainer="François Jacquet " @@ -26,7 +26,7 @@ RUN docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \ docker-php-ext-install -j$(nproc) gd mbstring xml pgsql gettext xmlrpc zip # Download and extract rosariosis -ENV ROSARIOSIS_VERSION 'v6.8.1' +ENV ROSARIOSIS_VERSION 'v6.9.4' RUN mkdir /usr/src/rosariosis && \ curl -L https://gitlab.com/francoisjacquet/rosariosis/-/archive/${ROSARIOSIS_VERSION}/rosariosis-${ROSARIOSIS_VERSION}.tar.gz \ | tar xz --strip-components=1 -C /usr/src/rosariosis && \