fix: non urgent #51

Merged
jon_nfc merged 3 commits from fix-non-urgent into development 2023-06-05 02:27:00 +00:00

View File

@ -44,7 +44,10 @@ RUN export DEBIAN_FRONTEND=noninteractive \
&& mkdir -p /etc/ansible/roles \
&& mkdir -p /etc/ansible/collections \
&& mkdir -p /workdir \
&& apt list --installed
&& apt list --installed \
# see issue https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/issues/9 for following two lines
&& rm /usr/bin/python3 \
&& ln -s /usr/local/bin/python3.11 /usr/bin/python3
WORKDIR /workdir
@ -62,4 +65,8 @@ RUN ansible-galaxy collection install \
awx.awx \
kubernetes.core \
# community.general.gitlab_*
community.general
community.general \
# ansible.posix.authorized_key for SSH
ansible.posix \
# docker managment
community.docker