From d684d3bd18c8394c3059c4e2d1aea7f1dbef27f8 Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Fri, 19 Jan 2018 00:11:18 +0100 Subject: [PATCH] set python 2.7 as default python in arch container --- arch/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/Dockerfile b/arch/Dockerfile index cb67a26..5625cb2 100644 --- a/arch/Dockerfile +++ b/arch/Dockerfile @@ -2,4 +2,6 @@ FROM archlinux/base RUN pacman -Syuu --noconfirm && pacman -S 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 --noconfirm +RUN ln -s /usr/bin/python2.7 /usr/bin/python + CMD ["ansible-playbook", "--help"]