Message284794
Docker containers don't have a locale set by default - the approach proposed in PEP 528 actually comes from the way I configure Docker images (which in turn comes from Armin Ronacher's recommendations in click for Python 3 locale handling).
In the Dockerfile for Fedora based containers I add:
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
while in CentOS 7 based containers I add:
ENV LC_ALL=en_US.UTF-8
ENV LANG=en_US.UTF-8
And with those settings, Python 3 based containers just work (my laptop is running en_AU.UTF-8 locally) |
|
Date |
User |
Action |
Args |
2017-01-06 02:50:53 | ncoghlan | set | recipients:
+ ncoghlan, lemburg, barry, vstinner, ezio.melotti, r.david.murray, methane, akira, deleted250130, yan12125, abarry, Jan Niklas Hasse |
2017-01-06 02:50:53 | ncoghlan | set | messageid: <1483671053.45.0.732754313997.issue28180@psf.upfronthosting.co.za> |
2017-01-06 02:50:53 | ncoghlan | link | issue28180 messages |
2017-01-06 02:50:52 | ncoghlan | create | |
|