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