From e5327423034dce50c3ab215efeb5ad50764e2a4f Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Fri, 25 May 2018 17:57:34 +0200 Subject: [PATCH] fixed default python interpreter for arch image --- arch/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/Dockerfile b/arch/Dockerfile index 75c8a3f..e6da850 100644 --- a/arch/Dockerfile +++ b/arch/Dockerfile @@ -6,6 +6,6 @@ RUN echo "[archlinuxfr]" >> /etc/pacman.conf && \ 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 -RUN ln -s /usr/bin/python2.7 /usr/bin/python +RUN rm /usr/bin/python && ln -s /usr/bin/python2.7 /usr/bin/python CMD ["ansible-playbook", "--help"]