segfault/router/Dockerfile

22 lines
528 B
Docker
Raw Normal View History

2022-07-25 12:42:33 +00:00
FROM ubuntu:22.04
2022-08-09 22:09:50 +00:00
RUN apt-get update \
2022-12-06 16:03:56 +00:00
&& apt-get install -y --no-install-recommends \
2022-08-09 22:09:50 +00:00
ca-certificates \
2022-10-12 16:45:46 +00:00
curl \
fping \
2022-08-09 22:09:50 +00:00
inetutils-ping \
iptables \
iproute2 \
iperf \
2022-10-12 16:45:46 +00:00
net-tools \
netcat \
2022-08-09 22:09:50 +00:00
tcpdump \
2023-01-05 19:03:25 +00:00
wireguard-tools \
2022-10-12 16:45:46 +00:00
wget \
vim \
2022-08-09 22:09:50 +00:00
&& rm -rf /var/lib/apt/lists/*
2022-07-25 12:42:33 +00:00
2022-12-16 23:31:12 +00:00
COPY tc.sh init.sh init-wg.sh fix-network.sh /
2022-07-25 12:42:33 +00:00
CMD ["bash", "-il"]