add AWS extension
Some checks failed
Docker Build / Build and Push Images (push) Failing after 13s

This commit is contained in:
Seaswimmer 2024-07-31 15:55:19 -04:00
parent 69229692b4
commit 275229e69b
Signed by: cswimr
GPG key ID: 3813315477F26F82
2 changed files with 17 additions and 0 deletions

View file

@ -24,6 +24,14 @@ 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
ADD composer.local.json /var/www/html/composer.local.json
RUN cd /var/www/html && composer update && cd -
RUN apt update \
&& apt install -y unzip wget

View file

@ -0,0 +1,9 @@
{
"extra": {
"merge-plugin": {
"include": [
"extensions/AWS/composer.json"
]
}
}
}