summaryrefslogtreecommitdiffstats
path: root/docker_image_build/Dockerfile
blob: f292bf2f5dcea8cde1d4a9db7a544a6e51fd25d0 (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
RUN sed -i -e "s/3600/9000/g" /root/yardstick/yardstick/ssh.py
RUN cd /root/yardstick && python setup.py install
WORKDIR /root