Yuvipanda has uploaded a new change for review. ( https://gerrit.wikimedia.org/r/337634 )
Change subject: python: Install icu dev files ...................................................................... python: Install icu dev files For people to install pyicu Bug: T157744 Change-Id: I0c4c15eda9f1c2ff72fcecc3ee918d8d1af1cbc8 --- 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/34/337634/1 diff --git a/python/base/Dockerfile.template b/python/base/Dockerfile.template index 65a1377..9113f28 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 +# We need icu for most internationalization things +RUN apt-get install --yes libicu-dev diff --git a/python2/base/Dockerfile.template b/python2/base/Dockerfile.template index 801f104..6cf8b07 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 +# We need icu for most internationalization things +RUN apt-get install --yes libicu-dev -- To view, visit https://gerrit.wikimedia.org/r/337634 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I0c4c15eda9f1c2ff72fcecc3ee918d8d1af1cbc8 Gerrit-PatchSet: 1 Gerrit-Project: operations/docker-images/toollabs-images Gerrit-Branch: master Gerrit-Owner: Yuvipanda <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
