blob: c0ac67c17b4402747934acc308595659130c869e (
plain)
1
2
3
4
5
6
7
8
|
FROM ubuntu:16.04
LABEL maintainer="OPNFV CONTAINER4NFV"
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
|