civisanalytics/ubuntu-locale

By civisanalytics

Updated almost 9 years ago

An Ubuntu base image with useful locale set

Image

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 Command

docker pull civisanalytics/ubuntu-locale