Preliminar Jenkinsfile and Dockerfile for RO; testing new debian repo structure
Change-Id: Ia80388afa1c779a08ed5f466eefd31da3152921d
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..a8e918d
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,9 @@
+FROM ubuntu:16.04
+
+RUN add-apt-repository -y 'deb https://osm-download.etsi.org/repository/osm/debian ReleaseONE unstable' && \
+ apt-get update && \
+ DEBIAN_FRONTEND=noninteractive apt-get -y install python python-pip libmysqlclient-dev libssl-dev libffi-dev && \
+ DEBIAN_FRONTEND=noninteractive pip install --upgrade pip && \
+ 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
+
+