Enhance Dockerfile to include tcpdump for network monitoring

This commit is contained in:
ImBenji
2025-08-29 00:11:15 +01:00
parent 5ed7b43613
commit 929dfafe78

View File

@@ -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