2020-03-19 00:02:31 +03:00
|
|
|
FROM ubuntu:latest
|
|
|
|
RUN apt -y update
|
|
|
|
RUN apt-get -y upgrade
|
|
|
|
RUN apt install -y ebtables
|
|
|
|
RUN apt install -y net-tools
|
2020-04-01 23:21:47 +03:00
|
|
|
COPY azure-cnms /usr/bin/azure-cnms
|
|
|
|
RUN chmod +x /usr/bin/azure-cnms
|
|
|
|
CMD ["/usr/bin/azure-cnms"]
|