Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5a89e89

Browse files
authored
chore(dogfood): unminimize ubuntu image to include man pages (#16133)
1 parent 12991ff commit 5a89e89

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

dogfood/contents/Dockerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,13 @@ ARG DEBIAN_FRONTEND="noninteractive"
104104
# Updated certificates are necessary to use the teraswitch mirror.
105105
# This must be ran before copying in configuration since the config replaces
106106
# the default mirror with teraswitch.
107-
RUN apt-get update && apt-get install --yes ca-certificates
107+
# 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
108114

109115
COPY files /
110116

0 commit comments

Comments
 (0)