ContainersWorkspace/system-toolbox/Containerfile

43 lines
779 B
Text
Raw Permalink Normal View History

FROM forgejo.maciej.cloud/pkg/mc-fedora-base
2023-04-23 18:20:41 +00:00
ENV PKGS_BASE="python3-cryptography"
2023-04-23 18:20:41 +00:00
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 \
wireguard-tools \
iotop \
2024-05-06 14:37:51 +00:00
rsync \
compsize"
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 \
mtr"
2023-04-23 18:20:41 +00:00
COPY help-toolbox.sh /usr/bin/help-toolbox
2024-04-05 12:38:14 +00:00
RUN dnf5 install -y ${PKGS_BASE} ${PKGS_GENERAL} ${PKGS_PROCESSES} ${PKGS_NETWORK} && \
chmod 555 /usr/bin/help-toolbox && \
2024-04-05 12:38:14 +00:00
dnf5 -y autoremove && \
dnf5 -y clean all
2023-04-23 18:20:41 +00:00
2024-04-05 12:38:14 +00:00
COPY ./bin /usr/local/bin