From 8e1c458cbbe84dff786b8e16fe445d5be4bec244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Jacquet?= Date: Sun, 14 Feb 2021 12:46:30 +0100 Subject: [PATCH] Version 7.6.1 update --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dd5fe12..d832cfc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ # Best Dockerfile practices: http://crosbymichael.com/dockerfile-best-practices.html # https://hub.docker.com/_/php?tab=tags&page=1&name=apache +# TODO When moving to PHP8.0, remove xmlrpc extension! FROM php:7.4-apache LABEL maintainer="François Jacquet " @@ -26,7 +27,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 'v7.3.1' +ENV ROSARIOSIS_VERSION 'v7.6.1' 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 && \