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 55e45ba commit f07e474Copy full SHA for f07e474
Dockerfile-debian.template
@@ -49,8 +49,9 @@ RUN set -eux; \
49
! grep -q '/usr/share/locale' /etc/dpkg/dpkg.cfg.d/docker; \
50
fi; \
51
apt-get update; apt-get install -y --no-install-recommends locales; rm -rf /var/lib/apt/lists/*; \
52
- echo en_US.UTF-8 UTF-8 >> /etc/locale.gen; \
53
- locale-gen
+ echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen; \
+ locale-gen; \
54
+ locale -a | grep 'en_US.utf8'
55
ENV LANG en_US.utf8
56
57
RUN set -eux; \
0 commit comments