7 строки
192 B
Docker
7 строки
192 B
Docker
|
FROM ubuntu:latest
|
||
|
RUN apt -y update
|
||
|
RUN apt-get -y upgrade
|
||
|
RUN apt install -y ebtables
|
||
|
RUN apt install -y net-tools
|
||
|
COPY networkmonitor /usr/bin/networkmonitor
|
||
|
CMD ["/usr/bin/networkmonitor"]
|