Install locales

This commit is contained in:
Stefan Verhoeven 2017-04-13 16:29:45 +02:00
parent 793ceb5373
commit 92e894a1b3

View File

@ -6,9 +6,6 @@ MAINTAINER Stefan Verhoeven <s.verhoeven@esciencecenter.nl>
# Configuring locales
ENV DEBIAN_FRONTEND noninteractive
RUN dpkg-reconfigure locales && \
locale-gen en_US.UTF-8 && \
update-locale LANG=en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
@ -93,9 +90,14 @@ RUN useradd -m -d /home/cartodb -s /bin/bash cartodb && \
wget \
nginx-light \
net-tools \
locales \
--no-install-recommends && \
rm -rf /var/lib/apt/lists/*
RUN dpkg-reconfigure locales && \
locale-gen en_US.UTF-8 && \
update-locale LANG=en_US.UTF-8
RUN git config --global user.email you@example.com
RUN git config --global user.name "Your Name"