2023-11-16 18:51:26 +00:00
|
|
|
FROM mediawiki:1.40.1
|
2023-10-30 10:37:36 +00:00
|
|
|
|
2023-11-16 18:51:26 +00:00
|
|
|
RUN apt-get update && apt-get install --yes curl libpq-dev tar unzip
|
2023-11-15 19:54:07 +00:00
|
|
|
|
2023-11-16 18:51:26 +00:00
|
|
|
RUN docker-php-ext-configure pgsql --with-pgsql=/usr/local/pgsql && \
|
|
|
|
docker-php-ext-install pgsql
|
2023-10-30 10:37:36 +00:00
|
|
|
|
2023-11-16 18:51:26 +00:00
|
|
|
ENV PLUGGABLE_AUTH_VERSION=REL1_40-eb10a76
|
|
|
|
ENV OPENID_CONNECT_VERSION=REL1_40-e97e0b1
|
2023-10-30 10:37:36 +00:00
|
|
|
|
2023-11-16 18:51:26 +00:00
|
|
|
RUN export PLUGGABLE_AUTH_SHA256SUM=d412cb788d8a931cb3fee5b89354d6f5ef6f3c544d340a63f1cb61cad08b524a && \
|
|
|
|
export archive=PluggableAuth-${PLUGGABLE_AUTH_VERSION}.tar.gz && \
|
|
|
|
curl --location --silent --output /tmp/${archive} https://extdist.wmflabs.org/dist/extensions/${archive} && \
|
|
|
|
echo "${PLUGGABLE_AUTH_SHA256SUM} /tmp/${archive}" | sha256sum --check && \
|
|
|
|
tar --extract --gzip --file /tmp/${archive} --directory /var/www/html/extensions && \
|
|
|
|
rm /tmp/${archive}
|
2023-10-30 10:37:36 +00:00
|
|
|
|
2023-11-16 18:51:26 +00:00
|
|
|
RUN export OPENID_CONNECT_SHA256SUM=0797347c1ee3cab55de2debb63c85b1a7679c647ecba0f97dd62ff6f7a336f9e && \
|
|
|
|
export archive=OpenIDConnect-${OPENID_CONNECT_VERSION}.tar.gz && \
|
|
|
|
curl --location --silent --output /tmp/${archive} https://extdist.wmflabs.org/dist/extensions/${archive} && \
|
|
|
|
echo "${OPENID_CONNECT_SHA256SUM} /tmp/${archive}" | sha256sum --check && \
|
|
|
|
tar --extract --gzip --file /tmp/${archive} --directory /var/www/html/extensions && \
|
|
|
|
rm /tmp/${archive}
|
2023-10-30 10:37:36 +00:00
|
|
|
|
2023-11-16 18:51:26 +00:00
|
|
|
RUN echo '{ "extra": { "merge-plugin": { "include": [ "extensions/OpenIDConnect/composer.json" ] } } }' \
|
|
|
|
> /var/www/html/composer.local.json && \
|
|
|
|
php -r "copy('https://getcomposer.org/installer', '/tmp/composer-setup.php');" && \
|
|
|
|
php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer && \
|
|
|
|
composer update
|