toolbox progress

This commit is contained in:
Maciej Lebiest 2023-04-24 20:48:22 +02:00
parent 9e56434b0b
commit a4d94fbd45
2 changed files with 30 additions and 2 deletions

View file

@ -1,10 +1,25 @@
FROM registry.fedoraproject.org/fedora:38
ENV PKGS_GENERAL="htop \
btop"
btop \
sysstat"
ENV PKGS_PROCESSES="procps-ng \
strace"
ENV PKGS_NETWORK="bind-utils \
nmap \
nmap-ncat \
telnet \
tcpdump \
iftop \
iproute \
iputils \
whois \
iptraf-ng"
RUN dnf clean all && \
dnf install -y ${PKGS_GENERAL} && \
dnf install -y ${PKGS_GENERAL} ${PKGS_PROCESSES} ${PKGS_NETWORK} && \
dnf -y autoremove && \
dnf -y clean all