Files
docker-ansible/Dockerfile
2025-08-15 08:43:12 +02:00

13 lines
203 B
Docker

FROM python:3
LABEL authors="bwr"
RUN pip install ansible
COPY .bashrc /root/
COPY ansible.key known_hosts /root/.ssh/
COPY kube-cluster \
playbooks \
roles \
/
ENTRYPOINT ["/bin/bash"]