diff options
author | swatisharma <swatix.sharma@intel.com> | 2016-08-24 00:05:03 +0530 |
---|---|---|
committer | swatisharma <swatix.sharma@intel.com> | 2016-08-24 15:16:34 +0530 |
commit | 76aa5ea1c150396731e22389f86430ddc86a01d0 (patch) | |
tree | 73f20fb5e3ca892d29576f6de6fff12e0f0161c1 /docker_image_build/Dockerfile | |
parent | 2b76a9cbd6c127109286c8705f3347415eb26753 (diff) |
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 <reddyx.gundarapu@intel.com>
Signed-off-by: Swati Sharma <swatix.sharma@intel.com>
Diffstat (limited to 'docker_image_build/Dockerfile')
-rw-r--r-- | docker_image_build/Dockerfile | 9 |
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 |