add pycert to system-toolbox
All checks were successful
Build images / build-images-amd64 (push) Successful in 13m57s
Build images / build-images-arm64 (push) Successful in 19m33s
Build images / update-images-manifests (push) Successful in 26s

This commit is contained in:
Szwendacz 2024-04-05 14:38:14 +02:00 committed by Maciej Lebiest
parent 8c86d9aaf3
commit 4974581fc6
3 changed files with 90 additions and 8 deletions

View file

@ -1,4 +1,4 @@
FROM registry.fedoraproject.org/fedora:39
FROM registry.fedoraproject.org/fedora-minimal
USER root
@ -6,7 +6,7 @@ ENV HISTSIZE=10000
ENV HISTTIMEFORMAT="%d/%m/%y %T "
ENV HISTFILESIZE=20000
ENV PKGS_BASE="fzf bash-completion"
ENV PKGS_BASE="fzf bash-completion python3-cryptography"
ENV PKGS_GENERAL="htop \
btop \
@ -37,12 +37,12 @@ ENV PKGS_NETWORK="bind-utils \
iptraf-ng \
mtr"
RUN dnf clean all && \
dnf install -y ${PKGS_BASE} ${PKGS_GENERAL} ${PKGS_PROCESSES} ${PKGS_NETWORK} && \
dnf -y autoremove && \
dnf -y clean all
RUN dnf5 install -y ${PKGS_BASE} ${PKGS_GENERAL} ${PKGS_PROCESSES} ${PKGS_NETWORK} && \
dnf5 -y autoremove && \
dnf5 -y clean all
COPY help-toolbox.sh /usr/bin/help-toolbox
COPY ./bin /usr/local/bin
RUN chmod 555 /usr/bin/help-toolbox && \
echo $'[ -f /usr/share/fzf/shell/key-bindings.bash ] && source /usr/share/fzf/shell/key-bindings.bash;\