X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fvnf%2Fping%2FDockerfile;fp=src%2Fvnf%2Fping%2FDockerfile;h=91436234b5170283153a6c6d85cc5179a0035593;hb=dc766e69c0c08c55b6df2384bbcfd1e712f03160;hp=0000000000000000000000000000000000000000;hpb=edea600a65fa5879c564c2f8de3bbbf1d91f7823;p=openretriever.git 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