Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.

Commit d2b7266

Browse files
author
Tim Haak
committed
changed locals
1 parent 384101a commit d2b7266

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@ MAINTAINER Tim Haak <tim@haak.co.uk>
44

55
ENV DEBIAN_FRONTEND="noninteractive" \
66
LANG="en_US.UTF-8" \
7-
LC_ALL="C.UTF-8" \
7+
LC_ALL="en_US.UTF-8" \
88
LANGUAGE="en_US.UTF-8"
99

1010
RUN apt-get -q update && \
11-
apt-get install -qy --force-yes curl && \
11+
apt-get install -qy locales && \
12+
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && \
13+
echo 'en_ZA.UTF-8 UTF-8' >> /etc/locale.gen && \
14+
locale-gen && \
15+
apt-get install -qy --force-yes curl ca-certificates && \
1216
echo "deb http://shell.ninthgate.se/packages/debian wheezy main" > /etc/apt/sources.list.d/plexmediaserver.list && \
1317
curl http://shell.ninthgate.se/packages/shell-ninthgate-se-keyring.key | apt-key add - && \
1418
apt-get -q update && \

0 commit comments

Comments
 (0)