Skip to content

Commit a012302

Browse files
committed
Merge branch 'REL1_43'
2 parents 671bc11 + 5a11767 commit a012302

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ RUN EXTS=`curl https://extdist.wmflabs.org/dist/extensions/ | awk 'BEGIN { FS =
8585
&& 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 \
8686
&& echo "Installing https://github.com/ubc/mediawiki-extensions-ubcauth/archive/REL1_43.tar.gz" \
8787
&& 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 \
8989
&& echo "Installing https://github.com/ubc/mediawiki-extensions-AutoCreatedUserRedirector/archive/master.tar.gz" \
9090
&& mkdir -p /var/www/html/extensions/AutoCreatedUserRedirector \
9191
&& curl -Ls https://github.com/ubc/mediawiki-extensions-AutoCreatedUserRedirector/archive/master.tar.gz | tar xz --strip=1 -C /var/www/html/extensions/AutoCreatedUserRedirector \

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ services:
3838
volumes:
3939
- simplesamlphp:/var/www/simplesamlphp
4040
# 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/
4242
environment: &simplesamlphpVars
4343
SIMPLESAMLPHP_DEV: 1
4444
SIMPLESAMLPHP_MEMCACHED_SERVER: memcached

docker/simplesamlphp/idp/Dockerfile.idp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN chown www-data. simplesamlphp/ /var/cache/simplesamlphp
1717
USER www-data
1818

1919
# Install simplesamlphp
20-
ARG SIMPLESAMLPHP_TAG=v2.2.1
20+
ARG SIMPLESAMLPHP_TAG=v2.4.2
2121
RUN git clone --branch $SIMPLESAMLPHP_TAG https://github.com/simplesamlphp/simplesamlphp.git
2222
WORKDIR /var/www/simplesamlphp
2323

docker/simplesamlphp/sp/Dockerfile.sp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:7.4-apache
1+
FROM php:8.3-apache
22
WORKDIR /var/www
33

44
# Install composer & php extension installer
@@ -17,7 +17,7 @@ USER www-data
1717

1818
# Install simplesamlphp, note we're using an older version for compatibility
1919
# as the wiki simplesamlphp extension is in a php7 environment
20-
ARG SIMPLESAMLPHP_TAG=v2.0.13
20+
ARG SIMPLESAMLPHP_TAG=v2.4.2
2121
RUN git clone --branch $SIMPLESAMLPHP_TAG https://github.com/simplesamlphp/simplesamlphp.git simplesamlphp-base
2222
WORKDIR /var/www/simplesamlphp-base
2323

docker/simplesamlphp/sp/custom-entrypoint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
set -e
33

44
cd /var/www
5+
rm -rf simplesamlphp/* # only rm directory contents
56
cp -urf simplesamlphp-base/* simplesamlphp/
67

78
# run the cron job tagged startup, this grabs the IDP's metadata

0 commit comments

Comments
 (0)