blob: ae9181b0fdb5c208263bba64c2e2d1db544bc981 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM opnfv/yardstick:stable
USER root
RUN apt-get update && apt-get install -y \
openssh-server
# Create dir to put yardstick configure file
RUN mkdir /var/run/sshd
EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]
|