summaryrefslogtreecommitdiffstats
path: root/docker_image_build/Dockerfile
blob: 6af1176f4405d3279019c15094e44b1571296081 (plain)
1
2
3
4
5
6
7
8
9
10
#
#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/danube
RUN sed -i -e "s/3600/9000/g" /root/yardstick/yardstick/ssh.py
RUN cd /root/yardstick && python setup.py install
WORKDIR /root