feat(ansible_playbooks): updated submodule ansible_playbooks #212

Merged
jon_nfc merged 34 commits from development into master 2024-01-14 19:29:02 +00:00
6 changed files with 42 additions and 12 deletions
Showing only changes of commit 2b3693e957 - Show all commits

View File

@ -12,6 +12,18 @@ RUN export DEBIAN_FRONTEND=noninteractive \
&& dpkg-reconfigure debconf -f noninteractive
RUN apt update \
# SoF fixing dpkg ldconfig not found error
&& cd /tmp \
&& apt-get download \
libc-bin \
&& dpkg --extract ./libc-bin_*.deb /tmp/deb \
&& cp /tmp/deb/sbin/ldconfig /sbin/ \
&& rm -Rf /tmp/deb \
&& rm libc-bin_*.deb \
&& 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 --reinstall -yq \
git \
curl \