-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
60 lines (56 loc) · 1.1 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
FROM debian:bookworm-20250113-slim
LABEL org.opencontainers.image.title="RTSP Network Tools"
LABEL org.opencontainers.image.authors="RTSP <[email protected]>"
LABEL org.opencontainers.image.source="https://github.com/rtsp/docker-net-tools"
LABEL org.opencontainers.image.licenses="Apache-2.0"
RUN set -x && apt-get update && apt-get --yes --no-install-recommends install \
bash \
ca-certificates \
bind9-host \
coreutils \
curl \
diffutils \
dnsutils \
ftp \
git \
gnupg \
grep \
ipmitool \
iproute2 \
iputils-arping \
iputils-ping \
jq \
less \
mawk \
nano \
net-tools \
netcat-openbsd \
nmap \
openssh-client \
openssl \
procps \
rsync \
sed \
socat \
telnet \
tftp \
traceroute \
util-linux \
vim-tiny \
wget \
zip \
unzip \
gzip \
pigz \
bzip2 \
pbzip2 \
xz-utils \
pixz \
zstd \
etcd-client \
mariadb-client \
postgresql-client \
redis-tools \
&& rm -rvf /var/lib/apt/lists/*
COPY files/ /root/
CMD ["/bin/sleep", "infinity"]