From 0b2de757f52d3f8762e764f6c3b8f7adbd435c67 Mon Sep 17 00:00:00 2001 From: "Hongli Lai (Phusion)" Date: Mon, 19 Jan 2015 17:22:00 +0100 Subject: [PATCH] Fixed some locale issues Closes GH-178. Thanks to David J. M. Karlsen. --- Changelog.md | 1 + image/prepare.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/Changelog.md b/Changelog.md index b0dceda..057df31 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,6 +3,7 @@ * `docker exec` is now the default and recommended mechanism for running commands in the container. SSH is now disabled by default, but is still supported for those cases where "docker exec" is not appropriate. Closes GH-168. * The workaround for Docker bug 2267 (the inability to modify /etc/hosts) has been removed, because it has been fixed upstream. Closes GH-155. * Logrotate now reloads syslog-ng properly. Closes GH-167. + * Fixed some locale issues. Closes GH-178. Thanks to David J. M. Karlsen. ## 0.9.15 (release date: 2014-10-03) diff --git a/image/prepare.sh b/image/prepare.sh index 5e5d188..8166fa5 100755 --- a/image/prepare.sh +++ b/image/prepare.sh @@ -44,3 +44,4 @@ apt-get dist-upgrade -y --no-install-recommends ## Fix locale. $minimal_apt_get_install language-pack-en locale-gen en_US +update-locale LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8