]> git.immae.eu Git - github/fretlink/docker-ansible.git/blobdiff - debian7/Dockerfile
Add: `git` for onbuild variants; handy tools for others.
[github/fretlink/docker-ansible.git] / debian7 / Dockerfile
index 73ea5d99f643189a8bb0d4095b1477359d71d3fb..743d063f3b2f440e2a506810e5545710219a698a 100644 (file)
@@ -13,19 +13,25 @@ MAINTAINER William Yeh <william.pjyeh@gmail.com>
 
 
 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/*                           && \
     \