From 2d0470b5b1a711197d6c8cbad867503af0d2f9c0 Mon Sep 17 00:00:00 2001 From: Tim Way <1091435+timway@users.noreply.github.com> Date: Sun, 12 Feb 2023 04:02:13 -0600 Subject: [PATCH] Add 'ncurses' Package To Provide 'tput' (#294) * This was needed to get 'bash' inside the container to work correctly on a Fedora 37 with the new changes to add colors to the prompt --- Containerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containerfile b/Containerfile index a079c0f..865fb1f 100644 --- a/Containerfile +++ b/Containerfile @@ -25,6 +25,8 @@ COPY _build/devtools-publish /usr/local/bin/devtools-publish COPY _build/shells /etc/shells COPY _build/.bashrc /home/runner/.bashrc RUN \ +microdnf install --assumeyes ncurses && \ +microdnf clean all && \ pip3 install --progress-bar=off --compile --only-binary :all: \ -r requirements.txt && \ mkdir -p ~/.ansible/roles /usr/share/ansible/roles /etc/ansible/roles && \