ContainersWorkspace/system-toolbox/Containerfile
Szwendacz 66baff2e9d
All checks were successful
Build images / build-images-arm64 (push) Successful in 10m38s
Build images / build-images-amd64 (push) Successful in 9m27s
Build images / update-images-manifests (push) Successful in 31s
system-toolbox: add compsize
2024-05-06 16:37:51 +02:00

42 lines
779 B
Docker

FROM forgejo.maciej.cloud/pkg/mc-fedora-base
ENV PKGS_BASE="python3-cryptography"
ENV PKGS_GENERAL="htop \
btop \
sysstat \
util-linux \
lm_sensors \
smartmontools \
ffmpeg-free \
yt-dlp \
openfortivpn \
conntrack-tools \
wireguard-tools \
iotop \
rsync \
compsize"
ENV PKGS_PROCESSES="procps-ng \
strace"
ENV PKGS_NETWORK="bind-utils \
nmap \
nmap-ncat \
telnet \
tcpdump \
iftop \
iproute \
iputils \
whois \
iptraf-ng \
mtr"
COPY help-toolbox.sh /usr/bin/help-toolbox
RUN dnf5 install -y ${PKGS_BASE} ${PKGS_GENERAL} ${PKGS_PROCESSES} ${PKGS_NETWORK} && \
chmod 555 /usr/bin/help-toolbox && \
dnf5 -y autoremove && \
dnf5 -y clean all
COPY ./bin /usr/local/bin