diff --git a/dockerfile b/dockerfile index c88be36..9b9cd9e 100644 --- a/dockerfile +++ b/dockerfile @@ -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 \ No newline at end of file + community.general \ + # ansible.posix.authorized_key for SSH + ansible.posix \ + # docker managment + community.docker \ No newline at end of file