Add ping vnf
[openretriever.git] / src / vnf / ping / Dockerfile
diff --git a/src/vnf/ping/Dockerfile b/src/vnf/ping/Dockerfile
new file mode 100644 (file)
index 0000000..9143623
--- /dev/null
@@ -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