2024-07-30 14:55:15 -04:00
|
|
|
FROM mediawiki:1.42.1
|
|
|
|
|
2024-07-31 16:02:12 -04:00
|
|
|
RUN apt update \
|
2024-08-07 13:50:23 -04:00
|
|
|
&& apt install -y unzip wget clamav clamav-daemon make
|
2024-07-31 16:02:12 -04:00
|
|
|
|
2024-08-07 13:50:23 -04:00
|
|
|
# Install extensions
|
|
|
|
WORKDIR /var/www/html/extensions
|
2024-07-30 14:55:15 -04:00
|
|
|
|
2024-07-31 15:55:15 -04:00
|
|
|
RUN git clone --depth 1 \
|
2024-08-07 13:50:23 -04:00
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/MobileFrontend
|
2024-07-31 15:55:15 -04:00
|
|
|
|
2024-07-30 14:59:20 -04:00
|
|
|
RUN git clone --depth 1 \
|
2024-08-07 13:50:23 -04:00
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
|
2024-07-30 14:55:15 -04:00
|
|
|
|
2024-07-30 14:59:20 -04:00
|
|
|
RUN git clone --depth 1 \
|
2024-08-07 13:50:23 -04:00
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/Elastica
|
2024-08-09 14:56:18 -04:00
|
|
|
|
2024-08-07 13:50:23 -04:00
|
|
|
RUN git clone --depth 1 \
|
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/CirrusSearch
|
2024-08-09 14:56:18 -04:00
|
|
|
|
2024-07-30 15:22:37 -04:00
|
|
|
RUN git clone --depth 1 \
|
2024-08-07 13:50:23 -04:00
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/AdvancedSearch
|
2024-07-30 15:36:22 -04:00
|
|
|
|
2024-08-09 14:56:18 -04:00
|
|
|
|
2024-07-31 15:55:19 -04:00
|
|
|
RUN git clone --depth 1 \
|
|
|
|
https://github.com/edwardspec/mediawiki-aws-s3.git \
|
2024-08-07 13:50:23 -04:00
|
|
|
/AWS
|
2024-07-31 15:55:19 -04:00
|
|
|
|
2024-07-31 22:54:42 -04:00
|
|
|
RUN git clone --depth 1 \
|
2024-08-07 13:50:23 -04:00
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscordRCFeed
|
2024-07-31 22:54:42 -04:00
|
|
|
|
2024-07-31 22:59:06 -04:00
|
|
|
RUN git clone --depth 1 \
|
2024-08-07 13:50:23 -04:00
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/DismissableSiteNotice
|
2024-07-31 22:59:06 -04:00
|
|
|
|
2024-08-01 13:29:55 -04:00
|
|
|
RUN git clone --depth 1 \
|
2024-08-07 13:50:23 -04:00
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/cldr
|
2024-08-09 14:56:04 -04:00
|
|
|
|
2024-08-01 13:44:20 -04:00
|
|
|
RUN git clone --depth 1 \
|
2024-08-07 13:50:23 -04:00
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/CookieWarning
|
2024-08-01 13:44:20 -04:00
|
|
|
|
2024-08-01 13:45:38 -04:00
|
|
|
RUN git clone --depth 1 \
|
2024-08-07 13:50:23 -04:00
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/CreateUserPage
|
2024-08-01 13:45:38 -04:00
|
|
|
|
2024-08-01 13:46:41 -04:00
|
|
|
RUN git clone --depth 1 \
|
2024-08-07 13:50:23 -04:00
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/Disambiguator
|
2024-08-01 13:46:41 -04:00
|
|
|
|
2024-08-01 13:50:16 -04:00
|
|
|
RUN git clone --depth 1 \
|
2024-08-07 13:50:23 -04:00
|
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
|
|
|
|
|
|
|
|
# Install skins and tarballed extensions
|
|
|
|
WORKDIR /var/www/html
|
2024-08-01 13:50:16 -04:00
|
|
|
|
2024-07-31 20:33:49 -04:00
|
|
|
RUN wget https://github.com/StarCitizenTools/mediawiki-skins-Citizen/archive/main.zip \
|
|
|
|
&& unzip main.zip \
|
|
|
|
&& mkdir -p /var/www/html/skins/Citizen \
|
|
|
|
&& mv mediawiki-skins-Citizen-main/* /var/www/html/skins/Citizen \
|
|
|
|
&& rm main.zip
|
|
|
|
|
|
|
|
RUN wget https://github.com/StarCitizenWiki/mediawiki-extensions-EmbedVideo/archive/refs/tags/v3.4.2.tar.gz \
|
|
|
|
&& tar -xvf v3.4.2.tar.gz \
|
|
|
|
&& mkdir -p /var/www/html/extensions/EmbedVideo \
|
|
|
|
&& mv mediawiki-extensions-EmbedVideo-3.4.2/* /var/www/html/extensions/EmbedVideo \
|
|
|
|
&& rm v3.4.2.tar.gz
|
|
|
|
|
2024-08-07 13:50:23 -04:00
|
|
|
COPY *.tar.gz .
|
2024-08-01 14:21:31 -04:00
|
|
|
|
2024-08-07 13:50:23 -04:00
|
|
|
RUN for file in *.tar.gz; do \
|
|
|
|
tar -xvf "$file" --directory /var/www/html/extensions/ && rm "$file"; \
|
|
|
|
done
|
2024-08-01 14:13:33 -04:00
|
|
|
|
2024-08-07 13:52:32 -04:00
|
|
|
# Set executable permissions for SyntaxHighlighting
|
|
|
|
RUN chmod a+x /var/www/html/extensions/SyntaxHighlight_GeSHi/pygments/pygmentize
|
|
|
|
|
2024-08-06 01:46:38 -04:00
|
|
|
# Install composer (AWS S3 & CheckUser extensions)
|
2024-07-31 20:33:49 -04:00
|
|
|
RUN wget https://raw.githubusercontent.com/composer/getcomposer.org/76a7060ccb93902cd7576b67264ad91c8a2700e2/web/installer -O - -q | php -- --quiet \
|
|
|
|
&& mv composer.phar /usr/local/bin/composer
|
|
|
|
|
2024-08-06 01:51:24 -04:00
|
|
|
RUN mv /var/www/html/composer.local.json-sample /var/www/html/composer.local.json
|
2024-07-31 15:55:19 -04:00
|
|
|
|
2024-08-06 01:54:13 -04:00
|
|
|
ENV COMPOSER_ALLOW_SUPERUSER=1
|
|
|
|
|
2024-08-06 15:34:41 -04:00
|
|
|
RUN composer update -d /var/www/html
|
2024-08-01 15:14:29 -04:00
|
|
|
|
|
|
|
RUN mkdir /var/log/mediawiki && chown www-data:www-data /var/log/mediawiki
|