| 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 && \ |
| garciadeblas | 515dbae | 2017-04-24 11:41:29 +0200 | [diff] [blame] | 4 | DEBIAN_FRONTEND=noninteractive apt-get -y install git build-essential && \ |
| 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 && \ |
| garciadeblas | 3a82fc0 | 2017-04-21 15:03:48 +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-mysqldb |
| 10 | |