Merge pull request #8 from linuxserver/locale-gen

Locale gen
pull/9/head 39
Neil 2017-03-15 01:24:31 +00:00 zatwierdzone przez GitHub
commit 3a35eee145
1 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -8,13 +8,18 @@ ARG OVERLAY_ARCH="amd64"
# set environment variables
ARG DEBIAN_FRONTEND="noninteractive"
ENV HOME="/root" \
LANGUAGE="en_US.UTF-8" \
LANG="en_US.UTF-8" \
TERM="xterm"
# copy sources
COPY sources.list /etc/apt/
# install apt-utils
# generate locale
RUN \
locale-gen en_US.UTF-8 && \
# install apt-utils
apt-get update && \
apt-get install -y \
apt-utils && \