Seaswimmer
d6e0584029
All checks were successful
Docker Build / Build and Push Images (push) Successful in 50s
46 lines
1.6 KiB
Docker
46 lines
1.6 KiB
Docker
FROM mediawiki:1.42.1
|
|
|
|
RUN apt update \
|
|
&& apt install -y unzip wget
|
|
|
|
# Install composer
|
|
RUN wget https://raw.githubusercontent.com/composer/getcomposer.org/76a7060ccb93902cd7576b67264ad91c8a2700e2/web/installer -O - -q | php -- --quiet \
|
|
&& mv composer.phar /usr/local/bin/composer
|
|
|
|
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 git clone --depth 1 \
|
|
https://gerrit.wikimedia.org/r/p/mediawiki/extensions/MobileFrontend \
|
|
/var/www/html/extensions/MobileFrontend
|
|
|
|
RUN git clone --depth 1 \
|
|
https://gitlab.com/hydrawiki/extensions/EmbedVideo.git \
|
|
/var/www/html/extensions/EmbedVideo
|
|
|
|
RUN git clone --depth 1 \
|
|
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror \
|
|
/var/www/html/extensions/CodeMirror
|
|
|
|
RUN git clone --depth 1 \
|
|
https://gerrit.wikimedia.org/r/p/mediawiki/extensions/Elastica \
|
|
/var/www/html/extensions/Elastica
|
|
|
|
RUN git clone --depth 1 \
|
|
https://gerrit.wikimedia.org/r/p/mediawiki/extensions/CirrusSearch \
|
|
/var/www/html/extensions/CirrusSearch
|
|
|
|
RUN git clone --depth 1 \
|
|
https://gerrit.wikimedia.org/r/p/mediawiki/extensions/AdvancedSearch \
|
|
/var/www/html/extensions/AdvancedSearch
|
|
|
|
RUN git clone --depth 1 \
|
|
https://github.com/edwardspec/mediawiki-aws-s3.git \
|
|
/var/www/html/extensions/AWS
|
|
|
|
COPY composer.local.json /var/www/html/composer.local.json
|
|
|
|
RUN cd /var/www/html && composer update && cd -
|