provision: Fix Docker development environment unicode issues.

Apparently, we need these environment settings in bashrc as well.  

Fixes #11323.
This commit is contained in:
xiaomingplus 2019-01-29 14:08:19 +08:00 committed by Tim Abbott
parent 0181086d0f
commit 7331cdc0f5
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ RUN useradd -d /home/zulip -m zulip && echo 'zulip ALL=(ALL) NOPASSWD:ALL' >> /e
USER zulip
RUN ln -nsf /srv/zulip ~/zulip
RUN echo 'export LC_ALL="en_US.UTF-8" LANG="en_US.UTF-8" LANGUAGE="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/.bash_profile
WORKDIR /srv/zulip