| 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 && \ |
| 4 | DEBIAN_FRONTEND=noninteractive apt-get -y install git make && \ |
| 5 | DEBIAN_FRONTEND=noninteractive apt-get -y install python python-stdeb python-pip libmysqlclient-dev libssl-dev libffi-dev libvirt-dev && \ |
| garciadeblas | c9f7058 | 2017-04-21 14:33:32 +0200 | [diff] [blame] | 6 | DEBIAN_FRONTEND=noninteractive pip install --upgrade pip && \ |
| garciadeblas | dd93363 | 2017-04-24 10:15:33 +0200 | [diff] [blame^] | 7 | DEBIAN_FRONTEND=noninteractive pip install --upgrade setuptools && \ |
| 8 | 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] | 9 | |