docker-compose dockerfile change
[bottlenecks.git] / docker / bottleneck-compose / yardstick / Dockerfile
1 FROM opnfv/yardstick:latest
2
3 USER root
4
5 RUN apt-get update && apt-get install -y \
6     openssh-server
7
8 # Create dir to put yardstick configure file
9 RUN mkdir /var/run/sshd
10
11 EXPOSE 22
12 CMD ["/usr/sbin/sshd", "-D"]