Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions mediawiki/build/DockerSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,9 @@
wfLoadExtension( 'Capiunto' );
wfLoadExtension( 'VariablesLua' );

# Set lua binaries to apt installed Lua5.1
$wgScribuntoEngineConf['luastandalone']['luaPath'] = '/usr/bin/lua';


########### Flow (AFTER SMW!!!) ###############
# https://www.mediawiki.org/wiki/Extension:Flow
Expand Down
2 changes: 2 additions & 0 deletions mediawiki/build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,8 @@ RUN set -x; \
#### Scribunto / Lua ####
RUN set -x; \
cd $MW_HOME/extensions \
# install lua from distro to support all platforms
&& apt-get update && apt-get install -y --no-install-recommends lua5.1 \
&& git clone --depth 1 https://github.com/Liquipedia/VariablesLua.git \
&& git clone --depth 1 -b $MW_VERSION https://github.com/wikimedia/mediawiki-extensions-Capiunto.git Capiunto

Expand Down