From d4d4072a859936751408c4e99bcce36b95923ccc Mon Sep 17 00:00:00 2001 From: Jannik Badenhop Date: Mon, 22 Jul 2024 13:35:13 +0000 Subject: [PATCH] 4.1.10 --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6664339..31abc8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # 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.11-debian-12-r0 AS build +FROM bitnami/moodle:4.1.10-debian-12-r0 AS build USER root -ARG MOODLE_VERSION=${MOODLE_VERSION:-"4.1.11"} +ARG MOODLE_VERSION=${MOODLE_VERSION:-"4.1.10"} COPY scripts/install/downloadMoodle.sh /downloadMoodle.sh COPY scripts/install/downloadPlugins.sh /downloadPlugins.sh @@ -32,8 +32,8 @@ RUN mkdir /plugins && /downloadPlugins.sh # RUN /scripts/phpRedisInstall.sh # Stage 2: Production stage -FROM bitnami/moodle:4.1.11-debian-12-r0 -ARG MOODLE_VERSION=${MOODLE_VERSION:-"4.1.11"} +FROM bitnami/moodle:4.1.10-debian-12-r0 +ARG MOODLE_VERSION=${MOODLE_VERSION:-"4.1.10"} ARG DEBUG=${DEBUG:-true} # TODO change back after dev RUN echo "de_DE.UTF-8 UTF-8" >> /etc/locale.gen && locale-gen