summaryrefslogtreecommitdiffstats
path: root/docker_image_build/Dockerfile
blob: fd1ea5883be98b47e1d8bf24cdd014b03edbe518 (plain)
1
2
3
4
5
6
7
8
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