docker: Fix locale to UTF-8 more strongly.

This fixes locale issues where `pip install` would fail with Python 3
inside the docker environment.
This commit is contained in:
Stanley Zheng 2016-11-21 16:55:18 -05:00 committed by Tim Abbott
parent 5896e610cb
commit 4d7920221c
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@ USER zulip
RUN ln -nsf /srv/zulip ~/zulip
RUN echo 'export LC_ALL="en_US.UTF-8"' >> ~zulip/.bashrc
RUN echo 'export LC_ALL="en_US.UTF-8" LANG="en_US.UTF-8" LANGUAGE="en_US.UTF-8"' >> ~zulip/.bashrc
WORKDIR /srv/zulip