summaryrefslogtreecommitdiffstats
path: root/src/vnf/ping/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'src/vnf/ping/Dockerfile')
-rw-r--r--src/vnf/ping/Dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/vnf/ping/Dockerfile b/src/vnf/ping/Dockerfile
new file mode 100644
index 0000000..9143623
--- /dev/null
+++ b/src/vnf/ping/Dockerfile
@@ -0,0 +1,8 @@
+FROM ubuntu:16.04
+LABEL maintainer="OPNFV OpenRetreiver"
+
+EXPOSE 22
+RUN apt-get update -y
+RUN apt-get install -y sudo openssh-server inetutils-ping
+COPY start.sh /usr/local/bin
+RUN chmod 755 /usr/local/bin/start.sh