segfault/router/Dockerfile

20 lines
470 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 \
&& apt-get install -y --no-install-recommends curl \
wget \
2022-09-28 09:49:46 +00:00
curl \
2022-08-09 22:09:50 +00:00
ca-certificates \
net-tools \
inetutils-ping \
netcat \
iptables \
iproute2 \
iperf \
tcpdump \
2022-09-28 09:49:46 +00:00
fping \
2022-08-09 22:09:50 +00:00
&& rm -rf /var/lib/apt/lists/*
2022-07-25 12:42:33 +00:00
2022-07-27 14:26:03 +00:00
COPY tc.sh init.sh fix-network.sh /
2022-07-25 12:42:33 +00:00
CMD ["bash", "-il"]