blob: 9d6008a866e4bf1dcf1fb3242fb12fda7ba6e6e7 [file] [log] [blame]
garciadeblasc9f70582017-04-21 14:33:32 +02001FROM ubuntu:16.04
2
garciadeblasdd933632017-04-24 10:15:33 +02003RUN apt-get update && \
garciadeblasd4c45fd2017-04-24 10:25:00 +02004 DEBIAN_FRONTEND=noninteractive apt-get -y install git build-essential && \
garciadeblasdd933632017-04-24 10:15:33 +02005 DEBIAN_FRONTEND=noninteractive apt-get -y install python python-stdeb python-pip libmysqlclient-dev libssl-dev libffi-dev libvirt-dev && \
garciadeblasc9f70582017-04-21 14:33:32 +02006 DEBIAN_FRONTEND=noninteractive pip install --upgrade pip && \
garciadeblasdd933632017-04-24 10:15:33 +02007 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
garciadeblasc9f70582017-04-21 14:33:32 +02009