summaryrefslogtreecommitdiffstats
path: root/docker_image_build/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'docker_image_build/Dockerfile')
-rw-r--r--docker_image_build/Dockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/docker_image_build/Dockerfile b/docker_image_build/Dockerfile
new file mode 100644
index 000000000..fd1ea5883
--- /dev/null
+++ b/docker_image_build/Dockerfile
@@ -0,0 +1,9 @@
+#
+#Dockerfile for creating image with yardstick and its dependency
+#packages installed.
+#kvmfornfv1 image has all dependency packages installed.
+#
+FROM kvmfornfv1:latest
+RUN cd /root && git clone https://gerrit.opnfv.org/gerrit/p/yardstick.git -b stable/colorado
+RUN cd /root/yardstick && python setup.py install
+WORKDIR /root