From 8938014ddb8bebd3a3e270df60e15c1837922441 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Sat, 21 Dec 2024 23:23:35 -0500 Subject: [PATCH] Add `tree` to the container builds --- build/Containerfile.centos9 | 2 +- build/Containerfile.debian12 | 2 +- build/Containerfile.fedora39 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Containerfile.centos9 b/build/Containerfile.centos9 index af54138..6158745 100644 --- a/build/Containerfile.centos9 +++ b/build/Containerfile.centos9 @@ -12,7 +12,7 @@ COPY python/requirements.txt /tmp/requirements.txt # RUN dnf install -y python3-pip git ansible-core python3-ansible-lint RUN dnf update -y \ - && dnf install -y python3-pip git systemd nodejs \ + && dnf install -y python3-pip git systemd nodejs tree \ && pip install pip --upgrade \ && pip install -r /tmp/requirements.txt diff --git a/build/Containerfile.debian12 b/build/Containerfile.debian12 index 9e57f54..4991216 100644 --- a/build/Containerfile.debian12 +++ b/build/Containerfile.debian12 @@ -12,7 +12,7 @@ COPY python/requirements.txt /tmp/requirements.txt RUN apt update \ && apt dist-upgrade -y \ && apt autoremove --purge -y \ - && apt install -y python3-pip git systemd nodejs \ + && apt install -y python3-pip git systemd nodejs tree \ && pip install pip --upgrade --break-system-packages \ && pip install -r /tmp/requirements.txt --break-system-packages diff --git a/build/Containerfile.fedora39 b/build/Containerfile.fedora39 index 3a425c3..0d9c1b8 100644 --- a/build/Containerfile.fedora39 +++ b/build/Containerfile.fedora39 @@ -11,7 +11,7 @@ COPY conf/dnf.conf /etc/dnf/dnf.conf COPY python/requirements.txt /tmp/requirements.txt # RUN dnf install -y python3-pip git ansible-core python3-ansible-lint -RUN dnf install -y python3-pip python3-devel gcc git systemd nodejs \ +RUN dnf install -y python3-pip python3-devel gcc git systemd nodejs tree \ && pip install pip --upgrade \ && pip install -r /tmp/requirements.txt