From 915d2bff8a21e8ba506c7c55bec9222c2043be5a Mon Sep 17 00:00:00 2001 From: danielsagi Date: Fri, 6 May 2022 22:47:01 -0700 Subject: [PATCH] added explicit new version to plugins in dockerfile installation --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3cda742..7c1a6d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,7 @@ 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 +# Add default plugins: https://github.com/aquasecurity/kube-hunter-plugins +RUN pip install kube-hunter-arp-spoof>=0.0.3 kube-hunter-dns-spoof>=0.0.3 ENTRYPOINT ["kube-hunter"]