diff --git a/docker/honeysap/Dockerfile b/docker/honeysap/Dockerfile index d6c2e4d1..f445a965 100644 --- a/docker/honeysap/Dockerfile +++ b/docker/honeysap/Dockerfile @@ -4,15 +4,15 @@ FROM alpine:3.10 ADD dist/ /root/dist/ # # Install packages -RUN sed -i 's/dl-cdn/dl-2/g' /etc/apk/repositories && \ - apk -U --no-cache add \ +RUN apk -U --no-cache add \ build-base \ git \ libstdc++ \ py2-markupsafe \ python2 \ python2-dev \ - py2-pip && \ + py2-pip \ + tcpdump && \ # # Clone honeysap from git # git clone --depth=1 https://github.com/SecureAuthCorp/HoneySAP /opt/honeysap && \