-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
85 lines (76 loc) · 1.44 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
ARG version=latest
FROM alpine:${version}
MAINTAINER Justin Lim ([email protected])
RUN set -ex \
&& echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories \
&& echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
&& echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \
&& apk update \
&& apk upgrade \
&& apk add --no-cache \
apache2-utils \
arp-scan \
bash \
bash-completion \
bind-tools \
bridge-utils \
busybox-extras \
ca-certificates \
conntrack-tools \
curl \
dhcping \
drill \
ethtool \
file\
fping \
hping3 \
iftop \
iotop \
iperf \
iperf3 \
iproute2 \
ipset \
iptables \
iptraf-ng \
iputils \
ipvsadm \
jq \
lftp \
libc6-compat \
liboping \
lsof \
mtr \
net-snmp-tools \
netcat-openbsd \
net-tools \
nftables \
ngrep \
nmap \
nmap-nping \
nmap-scripts \
openssl \
openssh \
py3-pip \
py3-setuptools \
rsync \
scapy \
socat \
speedtest-cli \
strace \
sysstat \
tcpdump \
tcptraceroute \
tshark \
util-linux \
vim \
git \
websocat \
wget \
perl-crypt-ssleay \
perl-net-ssleay
USER root
WORKDIR /root
ENV HOSTNAME troubleshoot
RUN chmod -R g=u /root
RUN chown root:root /usr/bin/dumpcap
CMD ["bash"]