From cb33749393f5bbb46c8bce6b4870127f41ecce23 Mon Sep 17 00:00:00 2001 From: Alessandro Fael Garcia Date: Fri, 13 Apr 2018 15:59:19 -0700 Subject: [PATCH] Fix Dockerfiles syntax --- tests/dockerfiles/Dockerfile.debian-jessie | 2 +- tests/dockerfiles/Dockerfile.debian-stretch | 2 +- tests/dockerfiles/Dockerfile.ubuntu-trusty | 2 +- tests/dockerfiles/Dockerfile.ubuntu-xenial | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/dockerfiles/Dockerfile.debian-jessie b/tests/dockerfiles/Dockerfile.debian-jessie index b63e28f..edafeac 100644 --- a/tests/dockerfiles/Dockerfile.debian-jessie +++ b/tests/dockerfiles/Dockerfile.debian-jessie @@ -8,7 +8,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \ python-dev \ python-pip \ git \ - apt-transport-https + apt-transport-https \ && rm -rf /var/lib/apt/lists/* RUN pip install --upgrade setuptools && pip install ansible diff --git a/tests/dockerfiles/Dockerfile.debian-stretch b/tests/dockerfiles/Dockerfile.debian-stretch index 8481241..5cb8157 100644 --- a/tests/dockerfiles/Dockerfile.debian-stretch +++ b/tests/dockerfiles/Dockerfile.debian-stretch @@ -9,7 +9,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \ python-pip \ git \ systemd \ - apt-transport-https + apt-transport-https \ && rm -rf /var/lib/apt/lists/* RUN pip install --upgrade setuptools && pip install ansible diff --git a/tests/dockerfiles/Dockerfile.ubuntu-trusty b/tests/dockerfiles/Dockerfile.ubuntu-trusty index 3d3466a..4223f20 100644 --- a/tests/dockerfiles/Dockerfile.ubuntu-trusty +++ b/tests/dockerfiles/Dockerfile.ubuntu-trusty @@ -5,7 +5,7 @@ RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y software-pro RUN apt-add-repository -y ppa:ansible/ansible && apt-get update && apt-get install -y \ git \ ansible \ - apt-transport-https + apt-transport-https \ && rm -rf /var/lib/apt/lists/* RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts diff --git a/tests/dockerfiles/Dockerfile.ubuntu-xenial b/tests/dockerfiles/Dockerfile.ubuntu-xenial index d5457d3..56b7c39 100644 --- a/tests/dockerfiles/Dockerfile.ubuntu-xenial +++ b/tests/dockerfiles/Dockerfile.ubuntu-xenial @@ -5,7 +5,7 @@ RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y software-pro RUN apt-add-repository -y ppa:ansible/ansible && apt-get update && apt-get install -y \ git \ ansible \ - apt-transport-https + apt-transport-https \ && rm -rf /var/lib/apt/lists/* RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts