From: garciadeblas Date: Mon, 24 Apr 2017 07:25:27 +0000 (+0200) Subject: Adding git and make, and upgrading setuptools in Dockerfile X-Git-Tag: v2.0.0~14 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FRO.git;a=commitdiff_plain;h=32b836bb553673d1cdff9f1e00bd6bcead93380a Adding git and make, and upgrading setuptools in Dockerfile Change-Id: I5696d66dcda33848decc93c0a76123c460523664 Signed-off-by: garciadeblas --- diff --git a/Dockerfile b/Dockerfile index 785b3000..66cb83df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM ubuntu:16.04 RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get -y install python python-pip libmysqlclient-dev libssl-dev libffi-dev && \ + DEBIAN_FRONTEND=noninteractive apt-get -y install git make && \ + DEBIAN_FRONTEND=noninteractive apt-get -y install python python-stdeb python-pip libmysqlclient-dev libssl-dev libffi-dev && \ DEBIAN_FRONTEND=noninteractive pip install --upgrade pip && \ + DEBIAN_FRONTEND=noninteractive pip install --upgrade setuptools && \ DEBIAN_FRONTEND=noninteractive apt-get -y install python-argcomplete python-boto python-bottle python-jsonschema python-logutils python-cinderclient python-glanceclient python-keystoneclient python-neutronclient python-novaclient python-mysqldb