16 lines
313 B
Docker
16 lines
313 B
Docker
ARG UBUNTU_VER
|
|
|
|
FROM ubuntu:${UBUNTU_VER}
|
|
|
|
ARG TARGETPLATFORM
|
|
|
|
RUN apt update
|
|
|
|
RUN apt install -y curl wget nano lsb-core nano
|
|
|
|
RUN apt install -y net-tools iputils-ping tcpdump traceroute iproute2 iptables iperf3 dnsutils speedtest-cli
|
|
|
|
COPY scripts/entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|