From 8146810d441ce34ea57d2af242ad8fa5f99dfb65 Mon Sep 17 00:00:00 2001 From: Daniel Sagi Date: Sat, 7 May 2022 06:49:25 +0300 Subject: [PATCH] added installation of default plugins to Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1952391..3cda742 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,4 +26,6 @@ RUN apk add --no-cache \ COPY --from=builder /usr/local/lib/python3.8/site-packages /usr/local/lib/python3.8/site-packages COPY --from=builder /usr/local/bin/kube-hunter /usr/local/bin/kube-hunter +RUN pip install kube-hunter-arp-spoof kube-hunter-dns-spoof + ENTRYPOINT ["kube-hunter"]