| garciadeblas | 3a82fc0 | 2017-04-21 15:03:48 +0200 | [diff] [blame] | 1 | FROM ubuntu:16.04 |
| 2 | |
| garciadeblas | 5c0af45 | 2017-04-24 09:13:20 +0200 | [diff] [blame] | 3 | RUN apt-get update && \ |
| Mike Marchetti | 1b14cd8 | 2017-07-05 12:03:21 -0400 | [diff] [blame^] | 4 | DEBIAN_FRONTEND=noninteractive apt-get -y install git build-essential apt-utils && \ |
| garciadeblas | 515dbae | 2017-04-24 11:41:29 +0200 | [diff] [blame] | 5 | DEBIAN_FRONTEND=noninteractive apt-get -y install python python-dev python-all python-stdeb fakeroot pypi2deb && \ |
| 6 | DEBIAN_FRONTEND=noninteractive apt-get -y install python-pip libmysqlclient-dev libssl-dev libffi-dev && \ |
| garciadeblas | 3a82fc0 | 2017-04-21 15:03:48 +0200 | [diff] [blame] | 7 | DEBIAN_FRONTEND=noninteractive pip install --upgrade pip && \ |
| garciadeblas | 32b836b | 2017-04-24 09:25:27 +0200 | [diff] [blame] | 8 | DEBIAN_FRONTEND=noninteractive pip install --upgrade setuptools && \ |
| tierno | b4c2239 | 2017-06-14 12:55:38 +0200 | [diff] [blame] | 9 | 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-openstackclient python-mysqldb |
| garciadeblas | 3a82fc0 | 2017-04-21 15:03:48 +0200 | [diff] [blame] | 10 | |