From 76f4b749f3393bd040d3858cbc8a79881d1ba582 Mon Sep 17 00:00:00 2001 From: briskt <3172830+briskt@users.noreply.github.com> Date: Tue, 28 May 2024 09:46:08 +0800 Subject: [PATCH] copy material theme templates to other modules --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index a68fb93e..d55ec50f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,6 +44,11 @@ ENV SSP_PATH /data/vendor/simplesamlphp/simplesamlphp # Copy modules into simplesamlphp COPY modules/ $SSP_PATH/modules +# Copy material theme templates to other modules, just in case the "default" theme is selected +COPY modules/material/themes/material/expirychecker/* $SSP_PATH/modules/expirychecker/templates/ +COPY modules/material/themes/material/mfa/* $SSP_PATH/modules/mfa/templates/ +COPY modules/material/themes/material/profilereview/* $SSP_PATH/modules/profilereview/templates/ + # Copy in SSP override files RUN mv $SSP_PATH/www/index.php $SSP_PATH/www/ssp-index.php COPY dockerbuild/ssp-overrides/index.php $SSP_PATH/www/index.php