From 2b46df99212ffa3c86828623cd67e0c71db14505 Mon Sep 17 00:00:00 2001 From: Sneexy Date: Thu, 4 Apr 2024 13:22:56 -0500 Subject: [PATCH] chore: compact addition of starship into the same RUN for installing packages --- toolboxes/fedora-toolbox/Containerfile.fedora | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/toolboxes/fedora-toolbox/Containerfile.fedora b/toolboxes/fedora-toolbox/Containerfile.fedora index 0f8b88f..483534a 100644 --- a/toolboxes/fedora-toolbox/Containerfile.fedora +++ b/toolboxes/fedora-toolbox/Containerfile.fedora @@ -1,13 +1,10 @@ FROM ghcr.io/ublue-os/fedora-distrobox:latest -# Adds repository for starship -RUN dnf -y upgrade && \ - dnf -y install \ - dnf-plugins-core - dnf -y copr enable atim/starship - +# Adds repository for starship prompt & # Install decent selection of Modern Unix utilities, then random useful utilities -RUN dnf -y install \ +RUN dnf -y copr enable atim/starship && \ + dnf -y upgrade && \ + dnf -y install \ bat \ duf \ fd-find \