Updates to bring us up-to-date
Some checks failed
Docker Image Build Pipeline / Clean-Stale-Artifacts (push) Successful in 3s
Docker Image Build Pipeline / Check-Environment (push) Successful in 1s
Docker Image Build Pipeline / Clone-Repo (push) Failing after 0s
Docker Image Build Pipeline / Build-Images (push) Has been skipped
Docker Image Build Pipeline / Push-Images (push) Has been skipped
Docker Image Build Pipeline / Cleanup-Build-Images (push) Has been skipped
Docker Image Build Pipeline / Cleanup-Docker-Login (push) Has been skipped

This commit is contained in:
2025-08-13 15:07:31 -04:00
parent e247105e3f
commit 7b5e144cfa
8 changed files with 31 additions and 19 deletions

View File

@ -8,7 +8,7 @@ RUN mkdir -p /root/.ssh
COPY conf/ssh_config /root/.ssh/config
COPY conf/hosts /etc/hosts
COPY conf/dnf.conf /etc/dnf/dnf.conf
COPY python/requirements.txt /tmp/requirements.txt
COPY python/requirements-centos.txt /tmp/requirements.txt
# RUN dnf install -y python3-pip git ansible-core python3-ansible-lint
RUN dnf update -y \
@ -18,4 +18,5 @@ RUN dnf update -y \
COPY ansible/ansible-check.yml /tmp/ansible-check.yml
WORKDIR /root
CMD ["/bin/bash"]

View File

@ -18,4 +18,5 @@ RUN apt update \
COPY ansible/ansible-check.yml /tmp/ansible-check.yml
WORKDIR /root
CMD ["/bin/bash"]

View File

@ -12,10 +12,11 @@ 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 python3-devel gcc git systemd nodejs tree procps-ng \
&& dnf install -y python3-pip python3-devel gcc git systemd nodejs tree procps-ng python3-libdnf5 \
&& pip install pip --upgrade \
&& pip install -r /tmp/requirements.txt
COPY ansible/ansible-check.yml /tmp/ansible-check.yml
WORKDIR /root
CMD ["/bin/bash"]