Add ping vnf
[openretriever.git] / src / vnf / ping / Dockerfile
1 FROM ubuntu:16.04
2 LABEL maintainer="OPNFV OpenRetreiver"
3
4 EXPOSE 22
5 RUN apt-get update -y
6 RUN apt-get install -y sudo openssh-server inetutils-ping
7 COPY start.sh /usr/local/bin
8 RUN chmod 755 /usr/local/bin/start.sh