]> git.immae.eu Git - github/fretlink/docker-ansible.git/blobdiff - master-debian8/Dockerfile
Fix: remove the need for an 'echo -e' option due to inconsistency treatments among...
[github/fretlink/docker-ansible.git] / master-debian8 / Dockerfile
index 1615ae5824b54b4c12e29713f5e254f3b1c61038..fcf957cfdd2dc74e02be2fc25ea736150a496371 100644 (file)
@@ -49,7 +49,7 @@ RUN echo "===> Adding Ansible's prerequisites..."   && \
     \
     echo "===> Adding hosts for convenience..."  && \
     mkdir -p /etc/ansible                        && \
-    echo -e '[local]\nlocalhost\n' > /etc/ansible/hosts
+    echo 'localhost' > /etc/ansible/hosts
 
 
 ENV PATH        /opt/ansible/bin:$PATH