We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f1ff084 + 63157f3 commit 778ca47Copy full SHA for 778ca47
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:2.7-alpine
+FROM python:3.9-alpine
2
3
# Shorten common strings
4
ARG GH=https://raw.githubusercontent.com
@@ -11,7 +11,9 @@ ADD $GH/royhills/arp-scan/master/ieee-oui.txt $USR/arp-scan/ieee-oui.t
11
ADD $GH/nmap/nmap/master/nmap-service-probes $USR/nmap/nmap-service-probes
12
13
# tcpdump is needed by scapy to replay pcaps
14
-RUN apk update && apk add --no-cache tcpdump
+# binutils is needed for objdump
15
+# musl-utils is needed for ldconfig
16
+RUN apk update && apk add --no-cache tcpdump libpcap libpcap-dev musl-utils binutils
17
18
# Install and configure python libraries
19
COPY requirements.txt /requirements.txt
0 commit comments