From 76aa5ea1c150396731e22389f86430ddc86a01d0 Mon Sep 17 00:00:00 2001 From: swatisharma Date: Wed, 24 Aug 2016 00:05:03 +0530 Subject: CI integration for KVMforNFV. This patch contains scripts for creating a ubuntu docker image with yardstick and all its dependency packages installed for running cyclictest. Co-Authored-By: Gundarapu Reddy Signed-off-by: Swati Sharma --- docker_image_build/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docker_image_build/Dockerfile (limited to 'docker_image_build/Dockerfile') 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 -- cgit 1.2.3-korg