X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=debian7%2FDockerfile;h=743d063f3b2f440e2a506810e5545710219a698a;hb=b1f3718d07a6a68116eb98bcb2156af7b39c2259;hp=73ea5d99f643189a8bb0d4095b1477359d71d3fb;hpb=7b2618d5a775fd669a36076e6f8d2380aa73af69;p=github%2Ffretlink%2Fdocker-ansible.git diff --git a/debian7/Dockerfile b/debian7/Dockerfile index 73ea5d9..743d063 100644 --- a/debian7/Dockerfile +++ b/debian7/Dockerfile @@ -13,19 +13,25 @@ MAINTAINER William Yeh RUN echo "===> Installing python, sudo, and supporting tools..." && \ - apt-get update && \ + apt-get update -y && apt-get install --fix-missing && \ DEBIAN_FRONTEND=noninteractive \ apt-get install -y \ python python-yaml sudo \ - curl gcc python-pip python-dev && \ + curl gcc python-pip python-dev libffi-dev libssl-dev && \ + pip install --upgrade cffi && \ \ \ echo "===> Installing Ansible..." && \ pip install ansible && \ \ \ + echo "===> Installing handy tools (not absolutely required)..." && \ + apt-get install -y sshpass openssh-client && \ + \ + \ echo "===> Removing unused APT resources..." && \ - apt-get -f -y --auto-remove remove gcc python-pip python-dev && \ + apt-get -f -y --auto-remove remove \ + gcc python-pip python-dev libffi-dev libssl-dev && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* && \ \