8000
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 12991ff commit 9e6b52aCopy full SHA for 9e6b52a
dogfood/contents/Dockerfile
@@ -104,7 +104,13 @@ ARG DEBIAN_FRONTEND="noninteractive"
104
# Updated certificates are necessary to use the teraswitch mirror.
105
# This must be ran before copying in configuration since the config replaces
106
# the default mirror with teraswitch.
107
-RUN apt-get update && apt-get install --yes ca-certificates
+# Also enable the en_US.UTF-8 locale so that we don't generate multiple locales
108
+# and unminimize to include man pages.
109
+RUN apt-get update && \
110
+ apt-get install --yes ca-certificates unminimize && \
111
+ echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && \
112
+ locale-gen && \
113
+ yes | unminimize
114
115
COPY files /
116
0 commit comments