civisanalytics/ubuntu-locale
An Ubuntu base image with useful locale set
3.7K
Based on https://github.com/abevoelker/docker-ubuntu-locale
https://bugs.launchpad.net/ubuntu/+source/langpack-locales/+bug/931717
FROM ubuntu:14.04
# Ensure UTF-8 locale
COPY locale /etc/default/locale
RUN locale-gen en_US.UTF-8 && DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales
LANGUAGE="en_US.UTF-8"
LANG="en_US.UTF-8"
LC_ALL="en_US.UTF-8"
docker pull civisanalytics/ubuntu-locale