Skip to content

Commit fd23323

Browse files
author
Bitnami Bot
committed
3.10.0-debian-10-r45 release
1 parent ad365ad commit fd23323

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

3/debian-10/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "apache" "2.4.46-
1717
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "mysql-client" "10.3.27-0" --checksum f96905e763a6334b75a7cdb07f8d89658cde02be41cb09d91d0682fc649fdcff
1818
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "libphp" "7.3.25-1" --checksum 830db27d5ba104e6927e9f32626be713d562ffd10ffc4791b54bae36ad6a0947
1919
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "render-template" "1.0.0-3" --checksum 8179ad1371c9a7d897fe3b1bf53bbe763f94edafef19acad2498dd48b3674efe
20-
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "moodle" "3.10.0-0" --checksum 7a3a5ef96178b14eee24847aaf407a29ab7ea3831e8fb4812a96c43d4a29db6e
20+
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "moodle" "3.10.0-1" --checksum 71ef46968d001246683f0bc992d2643f26a686276403e6eec58632a1b0b61f8b
2121
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50
2222
RUN apt-get update && apt-get upgrade -y && \
2323
rm -r /var/lib/apt/lists /var/cache/apt/archives
@@ -31,8 +31,8 @@ RUN echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && locale-gen
3131

3232
COPY rootfs /
3333
RUN /opt/bitnami/scripts/locales/add-extra-locales.sh
34-
RUN /opt/bitnami/scripts/apache/postunpack.sh
3534
RUN /opt/bitnami/scripts/php/postunpack.sh
35+
RUN /opt/bitnami/scripts/apache/postunpack.sh
3636
RUN /opt/bitnami/scripts/apache-modphp/postunpack.sh
3737
RUN /opt/bitnami/scripts/moodle/postunpack.sh
3838
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
@@ -41,7 +41,7 @@ ENV ALLOW_EMPTY_PASSWORD="no" \
4141
APACHE_HTTPS_PORT_NUMBER="" \
4242
APACHE_HTTP_PORT_NUMBER="" \
4343
BITNAMI_APP_NAME="moodle" \
44-
BITNAMI_IMAGE_VERSION="3.10.0-debian-10-r44" \
44+
BITNAMI_IMAGE_VERSION="3.10.0-debian-10-r45" \
4545
LANG="en_US.UTF-8" \
4646
LANGUAGE="en_US:en" \
4747
MARIADB_HOST="mariadb" \

3/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
},
2323
"moodle": {
2424
"arch": "amd64",
25-
"digest": "7a3a5ef96178b14eee24847aaf407a29ab7ea3831e8fb4812a96c43d4a29db6e",
25+
"digest": "71ef46968d001246683f0bc992d2643f26a686276403e6eec58632a1b0b61f8b",
2626
"distro": "debian-10",
2727
"type": "NAMI",
28-
"version": "3.10.0-0"
28+
"version": "3.10.0-1"
2929
},
3030
"mysql-client": {
3131
"arch": "amd64",

3/debian-10/rootfs/opt/bitnami/scripts/libmoodle.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,14 @@ moodle_install() {
302302
#########################
303303
moodle_upgrade() {
304304
pushd "$MOODLE_BASE_DIR" >/dev/null
305-
debug_execute php "admin/cli/upgrade.php" --non-interactive --allow-unstable
305+
local -a moodle_upgrade_args=(
306+
"${PHP_BIN_DIR}/php"
307+
"admin/cli/upgrade.php"
308+
"--non-interactive"
309+
"--allow-unstable"
310+
)
311+
am_i_root && moodle_upgrade_args=("gosu" "$WEB_SERVER_DAEMON_USER" "${moodle_upgrade_args[@]}")
312+
debug_execute "${moodle_install_args[@]}"
306313
popd >/dev/null
307314
}
308315

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Non-root container images add an extra layer of security and are generally recom
4343
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
4444

4545

46-
* [`3`, `3-debian-10`, `3.10.0`, `3.10.0-debian-10-r44`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-moodle/blob/3.10.0-debian-10-r44/3/debian-10/Dockerfile)
46+
* [`3`, `3-debian-10`, `3.10.0`, `3.10.0-debian-10-r45`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-moodle/blob/3.10.0-debian-10-r45/3/debian-10/Dockerfile)
4747

4848
Subscribe to project updates by watching the [bitnami/moodle GitHub repo](https://github.com/bitnami/bitnami-docker-moodle).
4949

0 commit comments

Comments
 (0)