We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2159f4 commit fe21954Copy full SHA for fe21954
images/docker-stacks-foundation/Dockerfile
@@ -38,6 +38,7 @@ RUN apt-get update --yes && \
38
wget && \
39
apt-get clean && rm -rf /var/lib/apt/lists/* && \
40
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
41
+ echo "C.UTF-8 UTF-8" >> /etc/locale.gen && \
42
locale-gen
43
44
# Configure environment
@@ -46,9 +47,9 @@ ENV CONDA_DIR=/opt/conda \
46
47
NB_USER="${NB_USER}" \
48
NB_UID=${NB_UID} \
49
NB_GID=${NB_GID} \
- LC_ALL=en_US.UTF-8 \
50
- LANG=en_US.UTF-8 \
51
- LANGUAGE=en_US.UTF-8
+ LC_ALL=C.UTF-8 \
+ LANG=C.UTF-8 \
52
+ LANGUAGE=C.UTF-8
53
ENV PATH="${CONDA_DIR}/bin:${PATH}" \
54
HOME="/home/${NB_USER}"
55
0 commit comments