fix(locale): Tanty thrown by ansibe now fixed

Ansible throwing a tantrum that it could not find the locale.
now the locale is installed and set ti en_US

!81 #12
This commit is contained in:
2023-07-04 12:57:39 +09:30
parent 6a10873507
commit ed62936d69

View File

@ -36,6 +36,11 @@ RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get install --reinstall \
libc-bin \
# EoF fixing dpkg ldconfig not found error
# Set Locale to en_US as ansible requires a locale for it to function without chucking a tantrum!!
&& apt install -y \
locales \
&& sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen \
&& locale-gen \
&& apt-get install --no-install-recommends -y \
openssh-client \
git \