Offline improvements
Change-Id: Ib9e1d5d72ed810da7f82b5e495318d5f9e3eea73
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..0c6ee3b
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,28 @@
+FROM xrally/xrally-openstack:0.10.1
+
+SHELL ["/bin/bash", "-xec"]
+
+USER root
+
+WORKDIR /var/lib/
+
+RUN mkdir -p cvp-configuration
+
+RUN git clone https://github.com/openstack/tempest && \
+ pushd tempest; git checkout 17.2.0; pip install -r requirements.txt; \
+ popd;
+
+RUN git clone https://github.com/openstack/telemetry-tempest-plugin && \
+ pushd telemetry-tempest-plugin; pip install -r requirements.txt; \
+ popd;
+
+RUN git clone https://github.com/openstack/heat-tempest-plugin && \
+ pushd heat-tempest-plugin; pip install -r requirements.txt; \
+ popd;
+
+COPY rally/ /var/lib/cvp-configuration/rally
+COPY tempest/ /var/lib/cvp-configuration/tempest
+COPY cleanup.sh /var/lib/cvp-configuration/cleanup.sh
+COPY configure.sh /var/lib/cvp-configuration/configure.sh
+
+ENTRYPOINT ["/bin/bash"]