From f3c84c63ce61dfb483f13bd0de6b8008f922bb30 Mon Sep 17 00:00:00 2001 From: Jannik Badenhop Date: Fri, 22 Nov 2024 10:35:52 +0000 Subject: [PATCH] revert moodle version to 4.1.14 --- moodle/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/moodle/Dockerfile b/moodle/Dockerfile index b568558..a38d5c7 100644 --- a/moodle/Dockerfile +++ b/moodle/Dockerfile @@ -1,9 +1,9 @@ # This Dockerfile starts the entrypoint script to evaluate if a new moodle version exists and an update should be started. # Stage 1: Build stage -FROM bitnami/moodle:4.1.13-debian-12-r0 AS build +FROM bitnami/moodle:4.1.14-debian-12-r0 AS build USER root -ARG MOODLE_VERSION=${MOODLE_VERSION:-"4.1.13"} +ARG MOODLE_VERSION=${MOODLE_VERSION:-"4.1.14"} COPY scripts/install/downloadMoodle.sh /downloadMoodle.sh COPY scripts/install/downloadPlugins.sh /downloadPlugins.sh @@ -33,8 +33,8 @@ RUN mkdir /plugins && /downloadPlugins.sh # RUN /scripts/phpRedisInstall.sh # Stage 2: Production stage -FROM bitnami/moodle:4.1.13-debian-12-r0 -ARG MOODLE_VERSION=${MOODLE_VERSION:-"4.1.13"} +FROM bitnami/moodle:4.1.14-debian-12-r0 +ARG MOODLE_VERSION=${MOODLE_VERSION:-"4.1.14"} ARG DEBUG=${DEBUG:-false} RUN echo "de_DE.UTF-8 UTF-8" >> /etc/locale.gen && locale-gen