From 929dfafe787ad16426c935c176196e93ae856406 Mon Sep 17 00:00:00 2001 From: ImBenji Date: Fri, 29 Aug 2025 00:11:15 +0100 Subject: [PATCH] Enhance Dockerfile to include tcpdump for network monitoring --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 42f8696..8dfcf6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ FROM dart:3.9.0-100.2.beta -# Install WireGuard tools for IPC communication +# Install WireGuard tools for IPC communication and network monitoring RUN apt-get update && apt-get install -y \ wireguard-tools \ iproute2 \ iptables \ + tcpdump \ && rm -rf /var/lib/apt/lists/* WORKDIR /app