| 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 | cf92004 | 2017-09-14 16:17:39 +0200 | [diff] [blame] | 4 | DEBIAN_FRONTEND=noninteractive apt-get -y install git make python python-pip debhelper && \ |
| 5 | DEBIAN_FRONTEND=noninteractive apt-get -y install wget tox && \ |
| garciadeblas | c9cba06 | 2018-04-17 18:06:23 +0200 | [diff] [blame] | 6 | DEBIAN_FRONTEND=noninteractive pip install pip==9.0.3 && \ |
| garciadeblas | cf92004 | 2017-09-14 16:17:39 +0200 | [diff] [blame] | 7 | DEBIAN_FRONTEND=noninteractive pip install -U setuptools setuptools-version-command stdeb && \ |
| 8 | DEBIAN_FRONTEND=noninteractive pip install -U pyang pyangbind && \ |
| 9 | DEBIAN_FRONTEND=noninteractive apt-get -y install python-yaml python-netaddr python-boto && \ |
| 10 | DEBIAN_FRONTEND=noninteractive apt-get -y install software-properties-common && \ |
| 11 | DEBIAN_FRONTEND=noninteractive add-apt-repository -y cloud-archive:ocata && \ |
| 12 | DEBIAN_FRONTEND=noninteractive apt-get update && \ |
| 13 | DEBIAN_FRONTEND=noninteractive apt-get -y install python-novaclient python-keystoneclient python-glanceclient python-cinderclient python-neutronclient && \ |
| kasar | c5bf293 | 2018-03-09 04:15:22 -0800 | [diff] [blame] | 14 | DEBIAN_FRONTEND=noninteractive pip install -U progressbar pyvmomi pyvcloud==19.1.1 && \ |
| garciadeblas | cf92004 | 2017-09-14 16:17:39 +0200 | [diff] [blame] | 15 | DEBIAN_FRONTEND=noninteractive apt-get -y install python-argcomplete python-bottle python-cffi python-packaging python-paramiko python-pkgconfig libmysqlclient-dev libssl-dev libffi-dev python-mysqldb && \ |
| jomacarpe | ea2a73e | 2018-02-27 13:48:22 +0100 | [diff] [blame] | 16 | DEBIAN_FRONTEND=noninteractive apt-get -y install python-logutils python-openstackclient python-openstacksdk && \ |
| 17 | DEBIAN_FRONTEND=noninteractive pip install untangle && \ |
| 18 | DEBIAN_FRONTEND=noninteractive pip install -e git+https://github.com/python-oca/python-oca#egg=oca |
| garciadeblas | 3a82fc0 | 2017-04-21 15:03:48 +0200 | [diff] [blame] | 19 | |