Files
docker-ansible/Dockerfile

13 lines
203 B
Docker
Raw Normal View History

2025-08-15 08:43:12 +02:00
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"]