Add tree (#15)
Some checks failed
Docker Build Pipeline / Cleanup-Old-Artifacts (push) Successful in 1s
Docker Build Pipeline / Check-Environment (push) Failing after 1s
Docker Build Pipeline / Clone-Repo (push) Successful in 1s
Docker Build Pipeline / Build-Images (push) Successful in 4s
Docker Build Pipeline / Push-Images (push) Successful in 2s
Docker Build Pipeline / Cleanup-Build-Images (push) Successful in 20s
Docker Build Pipeline / Cleanup-Docker-Login (push) Successful in 0s

Reviewed-on: #15
Co-authored-by: Chris Hammer <chris@thezengarden.net>
Co-committed-by: Chris Hammer <chris@thezengarden.net>
This commit is contained in:
2024-12-21 23:38:19 -05:00
committed by Chris Hammer
parent 107744cab5
commit 41295efee2
6 changed files with 397 additions and 13 deletions

View File

@ -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

View File

@ -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

View File

@ -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