Zhuyifei1999 has uploaded a new change for review. ( https://gerrit.wikimedia.org/r/337603 )
Change subject: Install libicu52 on python & python2 base images ...................................................................... Install libicu52 on python & python2 base images PyICU fails without this package. Even compiling it locally for one tool does not work easily. Bug: T157744 Change-Id: I19f35ac6470f3f26f7278ca84c262133d9a47fd9 --- M python/base/Dockerfile.template M python2/base/Dockerfile.template 2 files changed, 6 insertions(+), 2 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/operations/docker-images/toollabs-images refs/changes/03/337603/1 diff --git a/python/base/Dockerfile.template b/python/base/Dockerfile.template index 65a1377..dc9c02a 100644 --- a/python/base/Dockerfile.template +++ b/python/base/Dockerfile.template @@ -15,4 +15,6 @@ # libxml2 pip package - T140117 RUN apt-get install --yes libxml2-dev libxslt-dev zlib1g-dev # Lots of usage of PyEnchant happens. T143449 -RUN apt-get install --yes libenchant-dev \ No newline at end of file +RUN apt-get install --yes libenchant-dev +# International Components for Unicode for PyICU T157744 +RUN apt-get install --yes libicu52 \ No newline at end of file diff --git a/python2/base/Dockerfile.template b/python2/base/Dockerfile.template index 801f104..2064d32 100644 --- a/python2/base/Dockerfile.template +++ b/python2/base/Dockerfile.template @@ -17,4 +17,6 @@ # python2 only, python3 should use PyMySQL RUN apt-get install --yes libmysqlclient-dev # Lots of usage of PyEnchant happens. T143449 -RUN apt-get install --yes libenchant-dev \ No newline at end of file +RUN apt-get install --yes libenchant-dev +# International Components for Unicode for PyICU T157744 +RUN apt-get install --yes libicu52 \ No newline at end of file -- To view, visit https://gerrit.wikimedia.org/r/337603 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I19f35ac6470f3f26f7278ca84c262133d9a47fd9 Gerrit-PatchSet: 1 Gerrit-Project: operations/docker-images/toollabs-images Gerrit-Branch: master Gerrit-Owner: Zhuyifei1999 <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
