Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12991ff commit 5a89e89Copy full SHA for 5a89e89
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 locales && \
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