From 07a5252db7419fdbfb581a5dd54836bd964ac34f Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Tue, 19 Mar 2024 19:18:57 -0400 Subject: [PATCH] replace coreutils-single with coreutils --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index dcfbbd1..1de7dca 100644 --- a/Containerfile +++ b/Containerfile @@ -21,7 +21,7 @@ VOLUME /build-container-installer/build VOLUME /build-container-installer/repos VOLUME /cache -RUN dnf install -y make && make install-deps +RUN if [[ "$(grep '^ID=' /etc/os-release)" == 'ID="rhel"' ]]; then dnf install -y coreutils --allowerasing; fi dnf install -y make && make install-deps ENTRYPOINT ["/bin/bash", "/build-container-installer/entrypoint.sh"]