blob: 91436234b5170283153a6c6d85cc5179a0035593 (
plain)
1
2
3
4
5
6
7
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
|