Skip to content

Commit fe21954

Browse files
authored
Don't default to US-specific locale settings (#2096)
1 parent c2159f4 commit fe21954

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

images/docker-stacks-foundation/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ RUN apt-get update --yes && \
3838
wget && \
3939
apt-get clean && rm -rf /var/lib/apt/lists/* && \
4040
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
41+
echo "C.UTF-8 UTF-8" >> /etc/locale.gen && \
4142
locale-gen
4243

4344
# Configure environment
@@ -46,9 +47,9 @@ ENV CONDA_DIR=/opt/conda \
4647
NB_USER="${NB_USER}" \
4748
NB_UID=${NB_UID} \
4849
NB_GID=${NB_GID} \
49-
LC_ALL=en_US.UTF-8 \
50-
LANG=en_US.UTF-8 \
51-
LANGUAGE=en_US.UTF-8
50+
LC_ALL=C.UTF-8 \
51+
LANG=C.UTF-8 \
52+
LANGUAGE=C.UTF-8
5253
ENV PATH="${CONDA_DIR}/bin:${PATH}" \
5354
HOME="/home/${NB_USER}"
5455

0 commit comments

Comments
 (0)