diff options
Diffstat (limited to 'src/vnf/ping/Dockerfile')
-rw-r--r-- | src/vnf/ping/Dockerfile | 8 |
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 |