From 9b619cec503ba1fb4715664b2dcb3c4f1cb9e412 Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Mon, 29 Jan 2018 22:40:35 +0100 Subject: [PATCH] added apt-utils to debian systems --- debian-7/Dockerfile | 2 +- debian-8/Dockerfile | 1 + ubuntu-14.04/Dockerfile | 1 + ubuntu-16.04/Dockerfile | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian-7/Dockerfile b/debian-7/Dockerfile index 2dbfea4..80897de 100644 --- a/debian-7/Dockerfile +++ b/debian-7/Dockerfile @@ -1,7 +1,7 @@ FROM debian:7 RUN apt-get -q update \ - && apt-get install -y python-pip python-dev git + && apt-get install -y python-pip python-dev git apt-utils RUN pip install --index-url=https://pypi.python.org/simple/ --upgrade pip diff --git a/debian-8/Dockerfile b/debian-8/Dockerfile index b38501f..5176f9c 100644 --- a/debian-8/Dockerfile +++ b/debian-8/Dockerfile @@ -9,6 +9,7 @@ RUN apt-get -q update \ python-dev \ python-pip \ git \ + apt-utils \ && apt-get clean \ && pip install --upgrade pip diff --git a/ubuntu-14.04/Dockerfile b/ubuntu-14.04/Dockerfile index 63a8266..cd64943 100644 --- a/ubuntu-14.04/Dockerfile +++ b/ubuntu-14.04/Dockerfile @@ -3,6 +3,7 @@ FROM ubuntu:14.04 RUN apt-get update \ && apt-get install -y --no-install-recommends \ software-properties-common \ + apt-utils \ && apt-add-repository ppa:ansible/ansible \ && apt-get update \ && apt-get install -y --no-install-recommends \ diff --git a/ubuntu-16.04/Dockerfile b/ubuntu-16.04/Dockerfile index d3676a7..7dd1238 100644 --- a/ubuntu-16.04/Dockerfile +++ b/ubuntu-16.04/Dockerfile @@ -3,6 +3,7 @@ FROM ubuntu:16.04 RUN apt-get update \ && apt-get install -y --no-install-recommends \ software-properties-common \ + apt-utils \ && apt-add-repository ppa:ansible/ansible \ && apt-get update \ && apt-get install -y --no-install-recommends \