aboutsummaryrefslogtreecommitdiff
path: root/docs/ansible_execution_environment/ansible_ee.containerfile
blob: 9b0018c8cdabfc2380bd20e8f0d3fa3a557b442f (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM quay.io/centos/centos:stream9

RUN dnf install -y ansible-core

LABEL ansible_execution_environment="podman run -it --rm \
-v /opt/playbooks:/opt/playbooks:Z \
-e ANSIBLE_NOCOLOR=True \
localhost/ansible_ee ansible-playbook"

#Build image:
# podman build -f ansible_ee.containerfile -t localhost/ansible_ee