Skip to content

Commit cb33749

Browse files
committed
Fix Dockerfiles syntax
1 parent 51cd432 commit cb33749

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/dockerfiles/Dockerfile.debian-jessie

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
88
python-dev \
99
python-pip \
1010
git \
11-
apt-transport-https
11+
apt-transport-https \
1212
&& rm -rf /var/lib/apt/lists/*
1313

1414
RUN pip install --upgrade setuptools && pip install ansible

tests/dockerfiles/Dockerfile.debian-stretch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
99
python-pip \
1010
git \
1111
systemd \
12-
apt-transport-https
12+
apt-transport-https \
1313
&& rm -rf /var/lib/apt/lists/*
1414

1515
RUN pip install --upgrade setuptools && pip install ansible

tests/dockerfiles/Dockerfile.ubuntu-trusty

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y software-pro
55
RUN apt-add-repository -y ppa:ansible/ansible && apt-get update && apt-get install -y \
66
git \
77
ansible \
8-
apt-transport-https
8+
apt-transport-https \
99
&& rm -rf /var/lib/apt/lists/*
1010

1111
RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts

tests/dockerfiles/Dockerfile.ubuntu-xenial

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y software-pro
55
RUN apt-add-repository -y ppa:ansible/ansible && apt-get update && apt-get install -y \
66
git \
77
ansible \
8-
apt-transport-https
8+
apt-transport-https \
99
&& rm -rf /var/lib/apt/lists/*
1010

1111
RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts

0 commit comments

Comments
 (0)