version upgrades, toolbox WIP

This commit is contained in:
Maciej Lebiest 2023-04-23 20:20:41 +02:00
parent 12419e71e2
commit 9e56434b0b
7 changed files with 80 additions and 5 deletions

15
toolbox/Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM registry.fedoraproject.org/fedora:38
ENV PKGS_GENERAL="htop \
btop"
RUN dnf clean all && \
dnf install -y ${PKGS_GENERAL} && \
dnf -y autoremove && \
dnf -y clean all
COPY help-toolbox.sh /usr/bin/help-toolbox
RUN chmod 555 /usr/bin/help-toolbox
USER root