ContainersWorkspace/system-toolbox/Dockerfile

40 lines
691 B
Text
Raw Normal View History

2023-04-23 18:20:41 +00:00
FROM registry.fedoraproject.org/fedora:38
ENV PKGS_GENERAL="htop \
2023-04-24 18:48:22 +00:00
btop \
sysstat \
util-linux \
lm_sensors \
smartmontools \
ffmpeg-free \
2023-11-11 13:53:07 +00:00
yt-dlp \
openfortivpn \
conntrack-tools \
2023-11-20 17:57:52 +00:00
wireguard-tools \
qrencode"
2023-04-24 18:48:22 +00:00
ENV PKGS_PROCESSES="procps-ng \
strace"
ENV PKGS_NETWORK="bind-utils \
nmap \
nmap-ncat \
telnet \
tcpdump \
iftop \
iproute \
iputils \
whois \
iptraf-ng"
2023-04-23 18:20:41 +00:00
RUN dnf clean all && \
2023-04-24 18:48:22 +00:00
dnf install -y ${PKGS_GENERAL} ${PKGS_PROCESSES} ${PKGS_NETWORK} && \
2023-04-23 18:20:41 +00:00
dnf -y autoremove && \
dnf -y clean all
COPY help-toolbox.sh /usr/bin/help-toolbox
RUN chmod 555 /usr/bin/help-toolbox
USER root