mirror of https://github.com/zulip/zulip.git
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:
parent
5896e610cb
commit
4d7920221c
|
@ -14,6 +14,6 @@ USER zulip
|
||||||
|
|
||||||
RUN ln -nsf /srv/zulip ~/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
|
WORKDIR /srv/zulip
|
||||||
|
|
Loading…
Reference in New Issue