-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
59 lines (59 loc) · 814 Bytes
/
Dockerfile
File metadata and controls
59 lines (59 loc) · 814 Bytes
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
FROM alpine:3.23.3
RUN apk add --no-cache \
7zip \
bash \
bind-tools \
bridge-utils \
bzip2 \
ca-certificates \
curl \
diffutils \
drill \
e2fsprogs \
ethtool \
git \
gpg \
gptfdisk \
grep \
htop \
iperf \
iperf3 \
iproute2 \
iptables \
iputils \
jq yq \
kubectl \
lsof \
lvm2 \
mdadm \
mtr \
nano \
netcat-openbsd \
net-tools \
nmap \
nvme-cli \
openssl \
patch \
pciutils \
picocom \
procps \
rclone \
rsync \
smartmontools \
socat \
strace \
zip \
zstd \
tar \
tcpdump \
traceroute \
tshark \
tzdata \
unzip \
usbutils \
util-linux-misc \
xfsprogs \
xorriso \
xz
WORKDIR /
CMD ["/bin/bash"]