Fix build files; Update action vars
Some checks failed
Docker Build Pipeline / Cleanup-Old-Artifacts (push) Successful in 0s
Docker Build Pipeline / Check-Environment (push) Successful in 0s
Docker Build Pipeline / Clone-Repo (push) Successful in 1s
Docker Build Pipeline / Build-Images (push) Failing after 2m1s
Docker Build Pipeline / Push-Images (push) Has been skipped
Docker Build Pipeline / Cleanup-Build-Images (push) Has been skipped
Docker Build Pipeline / Cleanup-Docker-Login (push) Has been skipped
Some checks failed
Docker Build Pipeline / Cleanup-Old-Artifacts (push) Successful in 0s
Docker Build Pipeline / Check-Environment (push) Successful in 0s
Docker Build Pipeline / Clone-Repo (push) Successful in 1s
Docker Build Pipeline / Build-Images (push) Failing after 2m1s
Docker Build Pipeline / Push-Images (push) Has been skipped
Docker Build Pipeline / Cleanup-Build-Images (push) Has been skipped
Docker Build Pipeline / Cleanup-Docker-Login (push) Has been skipped
This commit is contained in:
21
build/Containerfile.centos
Normal file
21
build/Containerfile.centos
Normal file
@ -0,0 +1,21 @@
|
||||
FROM quay.io/centos/centos:stream9
|
||||
LABEL maintainer="Chris Hammer (chris@thezengarden.net)"
|
||||
|
||||
RUN rm /etc/localtime \
|
||||
&& ln -s /usr/share/zoneinfo/US/Eastern /etc/localtime
|
||||
|
||||
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
|
||||
|
||||
# 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 \
|
||||
&& pip install pip --upgrade \
|
||||
&& pip install -r /tmp/requirements.txt
|
||||
|
||||
COPY ansible/ansible-check.yml /tmp/ansible-check.yml
|
||||
|
||||
CMD ["/bin/bash"]
|
Reference in New Issue
Block a user