diff options
author | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-03-13 09:40:35 +0100 |
---|---|---|
committer | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-03-13 09:40:35 +0100 |
commit | 7f528fd47c2d6158f396edbd916c4b7384d912e9 (patch) | |
tree | e3c367814ae28e70374020a4590651b32b9d7330 /provisioning/Dockerfile | |
parent | d465548566e4ec28c893cd7e1bc28e7bbb702d5c (diff) |
Set locale to UTF-8 in docker context.
- Issue #322
Diffstat (limited to 'provisioning/Dockerfile')
-rw-r--r-- | provisioning/Dockerfile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/provisioning/Dockerfile b/provisioning/Dockerfile index d1b6e0bf..77a72c39 100644 --- a/provisioning/Dockerfile +++ b/provisioning/Dockerfile @@ -39,6 +39,12 @@ RUN apt-get update -y --force-yes RUN apt-get install python-pip python-all-dev libssl-dev RUN pip install taskthread +# Set the locale +RUN locale-gen en_US.UTF-8 +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US:en +ENV LC_ALL en_US.UTF-8 + RUN apt-get install -y --force-yes --allow-unauthenticated soledad-client soledad-common # Install Pixelated User Agent RUN apt-get install -y --force-yes pixelated-user-agent |