18 lines
638 B
Docker
18 lines
638 B
Docker
FROM mediawiki:1.39.3
|
|
|
|
ENV GIT_URL https://gerrit.wikimedia.org/r/mediawiki
|
|
ENV MW_DIR /var/www/html
|
|
|
|
RUN cd "$MW_DIR/extensions" \
|
|
&& git clone --depth 1 -b REL1_39 $GIT_URL/extensions/LDAPProvider \
|
|
&& git clone --depth 1 -b REL1_39 $GIT_URL/extensions/LDAPAuthentication2 \
|
|
&& git clone --depth 1 -b REL1_39 $GIT_URL/extensions/PluggableAuth \
|
|
&& git clone --depth 1 -b REL1_39 $GIT_URL/extensions/MobileFrontend \
|
|
&& chown www-data:www-data -R *
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
libldap-dev \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& docker-php-ext-install ldap
|