| garciadeblas | c9f7058 | 2017-04-21 14:33:32 +0200 | [diff] [blame] | 1 | FROM ubuntu:16.04 |
| 2 | |
| garciadeblas | dd93363 | 2017-04-24 10:15:33 +0200 | [diff] [blame] | 3 | RUN apt-get update && \ |
| garciadeblas | d4c45fd | 2017-04-24 10:25:00 +0200 | [diff] [blame] | 4 | DEBIAN_FRONTEND=noninteractive apt-get -y install git build-essential && \ |
| garciadeblas | 0c52db4 | 2017-04-24 10:41:43 +0200 | [diff] [blame^] | 5 | DEBIAN_FRONTEND=noninteractive apt-get -y install python python-dev python-all python-stdeb fakeroot pypi2deb && \ |
| garciadeblas | 6c77e42 | 2017-04-24 10:36:43 +0200 | [diff] [blame] | 6 | DEBIAN_FRONTEND=noninteractive apt-get -y install python-pip libmysqlclient-dev libssl-dev libffi-dev libvirt-dev && \ |
| garciadeblas | c9f7058 | 2017-04-21 14:33:32 +0200 | [diff] [blame] | 7 | DEBIAN_FRONTEND=noninteractive pip install --upgrade pip && \ |
| garciadeblas | dd93363 | 2017-04-24 10:15:33 +0200 | [diff] [blame] | 8 | DEBIAN_FRONTEND=noninteractive pip install --upgrade setuptools && \ |
| 9 | DEBIAN_FRONTEND=noninteractive apt-get -y install python-argcomplete python-jsonschema python-logutils python-mysqldb python-paramiko python-requests python-yaml python-bottle python-libvirt |
| garciadeblas | c9f7058 | 2017-04-21 14:33:32 +0200 | [diff] [blame] | 10 | |