]> 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 72d3d312fbb8c719a4b912c163d857c3a9fa11a4..743d063f3b2f440e2a506810e5545710219a698a 100644 (file)
@@ -13,26 +13,32 @@ MAINTAINER William Yeh <william.pjyeh@gmail.com>
 
 
 RUN echo "===> Installing python, sudo, and supporting tools..."  && \
-    apt-get update  && \
-    DEBIAN_FRONTEND=noninteractive  \
-    apt-get install -y   \
-        python sudo      \
-        curl gcc python-pip python-dev  && \
+    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 libffi-dev libssl-dev  && \
+    pip install --upgrade cffi                     && \
     \
     \
     echo "===> Installing Ansible..."   && \
     pip install ansible                 && \
     \
     \
-    echo "===> Removing unused APT resources..."                       && \
-    apt-get -f -y --auto-remove remove curl gcc python-pip python-dev  && \
-    apt-get clean                                                      && \
-    rm -rf /var/lib/apt/lists/*                                        && \
+    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 libffi-dev libssl-dev  && \
+    apt-get clean                                                 && \
+    rm -rf /var/lib/apt/lists/*  /tmp/*                           && \
     \
     \
     echo "===> Adding hosts for convenience..."        && \
     mkdir -p /etc/ansible                              && \
-    echo '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 # default command: display Ansible version