diff --git a/Dockerfile b/Dockerfile index be77ba3..ce69be0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -55,6 +55,11 @@ RUN curl -k https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \ python3.11 get-pip.py && \ rm get-pip.py +# Install Ansible +# Docs: https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#installing-and-upgrading-ansible-with-pip +ARG ANSIBLE_VERSION=2.16.4 +RUN python3 -m pip install ansible-core==${ANSIBLE_VERSION} + # Cleanup RUN apt-get clean && \ rm -rf /var/lib/apt/lists/* diff --git a/scripts/docker_build.sh b/scripts/docker_build.sh new file mode 100644 index 0000000..680e6d2 --- /dev/null +++ b/scripts/docker_build.sh @@ -0,0 +1 @@ +echo "To-do"