summaryrefslogtreecommitdiffstats
path: root/docker/bottleneck-compose/yardstick/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'docker/bottleneck-compose/yardstick/Dockerfile')
-rw-r--r--docker/bottleneck-compose/yardstick/Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/docker/bottleneck-compose/yardstick/Dockerfile b/docker/bottleneck-compose/yardstick/Dockerfile
new file mode 100644
index 00000000..ae9181b0
--- /dev/null
+++ b/docker/bottleneck-compose/yardstick/Dockerfile
@@ -0,0 +1,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"]