]> git.immae.eu Git - github/fretlink/docker-ansible.git/blobdiff - master-debian8-onbuild/Dockerfile
Fix: remove the need for an 'echo -e' option due to inconsistency treatments among...
[github/fretlink/docker-ansible.git] / master-debian8-onbuild / Dockerfile
index d3066e39b5c457e3ef1b65cf81e80ab7561d2b06..19d493409faf4413866bad3c80803942a429b928 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