Skip to content

Commit 42c1be1

Browse files
committed
Install curl depency in Debian based containers
1 parent cb33749 commit 42c1be1

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

tests/dockerfiles/Dockerfile.debian-jessie

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

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

tests/dockerfiles/Dockerfile.debian-stretch

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
1010
git \
1111
systemd \
1212
apt-transport-https \
13+
curl \
1314
&& rm -rf /var/lib/apt/lists/*
1415

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

tests/dockerfiles/Dockerfile.ubuntu-trusty

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ RUN apt-add-repository -y ppa:ansible/ansible && apt-get update && apt-get insta
66
git \
77
ansible \
88
apt-transport-https \
9+
curl \
910
&& rm -rf /var/lib/apt/lists/*
1011

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

tests/dockerfiles/Dockerfile.ubuntu-xenial

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ RUN apt-add-repository -y ppa:ansible/ansible && apt-get update && apt-get insta
66
git \
77
ansible \
88
apt-transport-https \
9+
curl \
910
&& rm -rf /var/lib/apt/lists/*
1011

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

0 commit comments

Comments
 (0)