added apt-utils to debian systems

This commit is contained in:
Tobias Trabelsi 2018-01-29 22:40:35 +01:00
parent d684d3bd18
commit 9b619cec50
4 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -9,6 +9,7 @@ RUN apt-get -q update \
python-dev \
python-pip \
git \
apt-utils \
&& apt-get clean \
&& pip install --upgrade pip

View File

@ -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 \

View File

@ -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 \