This commit is contained in:
2025-08-15 08:43:12 +02:00
parent 236d558cff
commit 02aad24b0e
11 changed files with 69 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
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"]