First commit. Everything working as intended.

This commit is contained in:
2022-11-17 20:58:22 +08:00
commit e47266f5bd
4 changed files with 38 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
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
COPY scripts/entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]