Merge branch 'fix-non-urgent' into 'development'

fix: non urgent

See merge request nofusscomputing/projects/ansible/execution_environment!24
This commit is contained in:
2023-06-05 02:26:59 +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