ContainersWorkspace/system-toolbox/Dockerfile

36 lines
613 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 \
yt-dlp"
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