ansible/arch/Dockerfile

10 lines
472 B
Docker
Raw Normal View History

2018-01-16 22:20:49 +00:00
FROM archlinux/base
2018-01-29 22:42:15 +00:00
RUN echo "[archlinuxfr] \nSigLevel = Never \nServer = http://repo.archlinux.fr/$arch" >> /etc/pacman.conf
2018-01-29 22:40:51 +00:00
RUN pacman -Syuu --noconfirm && pacman -S yaourt ansible sshpass python2-passlib python2-netaddr python2-pywinrm python2-dnspython python2-ovirt-engine-sdk python2-jmespath python2-requests-ntlm python2-requests-kerberos python2-requests-credssp git --noconfirm
2018-01-16 22:20:49 +00:00
RUN ln -s /usr/bin/python2.7 /usr/bin/python
2018-01-16 22:20:49 +00:00
CMD ["ansible-playbook", "--help"]