Build like this
docker build . -t <name_you_want_image_to_have>
Ansible
Remoting script - https://raw.githubusercontent.com/ansible/ansible/devel/examples/scripts/ConfigureRemotingForAnsible.ps1
FROM centos:7
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
RUN yum check-update; \
yum install -y gcc libffi-devel python3 epel-release; \
yum install -y python3-pip; \
yum install -y wget; \
yum clean all
RUN pip3 install --upgrade pip; \
pip3 install --upgrade virtualenv; \
pip3 install pywinrm[kerberos]; \
pip3 install pywinrm; \
pip3 install jmspath; \
pip3 install requests; \
python3 -m pip install ansible; \
ansible-galaxy collection install azure.azcollection; \
pip3 install -r ~/.ansible/collections/ansible_collections/azure/azcollection/requirements-azure.txt
RUN ansible-galaxy collection install ansible.windows; \
ansible-galaxy install datadog.datadog