add pycert to system-toolbox
Some checks failed
Build images / build-images-amd64 (push) Failing after 9m34s
Build images / build-images-arm64 (push) Failing after 12m18s
Build images / update-images-manifests (push) Has been skipped

This commit is contained in:
Szwendacz 2024-04-05 13:58:24 +02:00 committed by Maciej Lebiest
parent 8c86d9aaf3
commit 541c5b8f20
3 changed files with 94 additions and 6 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;\