Skip to content

Commit

Permalink
4.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
JannikBadenhop committed Jul 22, 2024
1 parent f2a2974 commit d4d4072
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d4d4072

Please sign in to comment.