Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
yaronkoren authored Aug 24, 2023
1 parent ac428e4 commit 3eb3e9d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,18 @@ RUN set -x; \

# Other patches

# Add autoloading to several extensions' extension.json file, which normally require
# Composer autoloading
COPY _sources/patches/semantic-compound-queries-autoload.patch /tmp/semantic-compound-queries-autoload.patch
RUN set -x; \
cd $MW_HOME \
&& git apply /tmp/semantic-compound-queries-autoload.patch

COPY _sources/patches/semantic-scribunto-autoload.patch /tmp/semantic-scribunto-autoload.patch
RUN set -x; \
cd $MW_HOME \
&& git apply /tmp/semantic-scribunto-autoload.patch

# Add Bootstrap to LocalSettings.php if the web installer added the Chameleon skin
COPY _sources/patches/core-local-settings-generator.patch /tmp/core-local-settings-generator.patch
RUN set -x; \
Expand Down

0 comments on commit 3eb3e9d

Please sign in to comment.