File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ RUN EXTS=`curl https://extdist.wmflabs.org/dist/extensions/ | awk 'BEGIN { FS =
85
85
&& curl -Ls https://github.com/ubc/mediawiki-extensions-caliper/archive/v2.0.5.tar.gz | tar xz --strip=1 -C /var/www/html/extensions/caliper \
86
86
&& echo "Installing https://github.com/ubc/mediawiki-extensions-ubcauth/archive/REL1_43.tar.gz" \
87
87
&& mkdir -p /var/www/html/extensions/UBCAuth\
88
- && curl -Ls https://github.com/ubc/mediawiki-extensions-ubcauth/archive/master .tar.gz | tar xz --strip=1 -C /var/www/html/extensions/UBCAuth \
88
+ && curl -Ls https://github.com/ubc/mediawiki-extensions-ubcauth/archive/REL1_43 .tar.gz | tar xz --strip=1 -C /var/www/html/extensions/UBCAuth \
89
89
&& echo "Installing https://github.com/ubc/mediawiki-extensions-AutoCreatedUserRedirector/archive/master.tar.gz" \
90
90
&& mkdir -p /var/www/html/extensions/AutoCreatedUserRedirector \
91
91
&& curl -Ls https://github.com/ubc/mediawiki-extensions-AutoCreatedUserRedirector/archive/master.tar.gz | tar xz --strip=1 -C /var/www/html/extensions/AutoCreatedUserRedirector \
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ services:
38
38
volumes :
39
39
- simplesamlphp:/var/www/simplesamlphp
40
40
# dev cert, do not use for prod
41
- - ./docker/simplesamlphp/sp/cert/:/var/www/simplesamlphp/cert/
41
+ - ./docker/simplesamlphp/sp/cert/:/var/www/simplesamlphp-base /cert/
42
42
environment : &simplesamlphpVars
43
43
SIMPLESAMLPHP_DEV : 1
44
44
SIMPLESAMLPHP_MEMCACHED_SERVER : memcached
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ RUN chown www-data. simplesamlphp/ /var/cache/simplesamlphp
17
17
USER www-data
18
18
19
19
# Install simplesamlphp
20
- ARG SIMPLESAMLPHP_TAG=v2.2.1
20
+ ARG SIMPLESAMLPHP_TAG=v2.4.2
21
21
RUN git clone --branch $SIMPLESAMLPHP_TAG https://github.com/simplesamlphp/simplesamlphp.git
22
22
WORKDIR /var/www/simplesamlphp
23
23
Original file line number Diff line number Diff line change 1
- FROM php : 7.4 - apache
1
+ FROM php : 8.3 - apache
2
2
WORKDIR / var / www
3
3
4
4
# Install composer & php extension installer
@@ -17,7 +17,7 @@ USER www-data
17
17
18
18
# Install simplesamlphp , note we ' re using an older version for compatibility
19
19
# as the wiki simplesamlphp extension is in a php7 environment
20
- ARG SIMPLESAMLPHP_TAG = v2 .0.13
20
+ ARG SIMPLESAMLPHP_TAG = v2 .4.2
21
21
RUN git clone -- branch $SIMPLESAMLPHP_TAG https : //github.com/simplesamlphp/simplesamlphp.git simplesamlphp-base
22
22
WORKDIR / var / www / simplesamlphp - base
23
23
Original file line number Diff line number Diff line change 2
2
set -e
3
3
4
4
cd /var/www
5
+ rm -rf simplesamlphp/* # only rm directory contents
5
6
cp -urf simplesamlphp-base/* simplesamlphp/
6
7
7
8
# run the cron job tagged startup, this grabs the IDP's metadata
You can’t perform that action at this time.
0 commit comments