aboutsummaryrefslogtreecommitdiff
path: root/docs/ansible_execution_environment/ansible_ee.containerfile
blob: 48fb5ab19502c8d476e1cf45317f9b68127f0620 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM almalinux:9

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