ADD file:8d327ec6fb8410444a86febaa60a62967e116912cc42a18292ac8ee4b51687de in / |
LABEL org.label-schema.schema-version="1.0" org.label-schema.name="CentOS Stream 9 Base Image" org.label-schema.vendor="CentOS" org.label-schema.license="GPLv2" org.label-schema.build-date="20250812" |
CMD ["/bin/bash"] |
LABEL maintainer=Chris Hammer (chris@thezengarden.net) |
RUN /bin/sh -c rm /etc/localtime && ln -s /usr/share/zoneinfo/US/Eastern /etc/localtime # buildkit |
RUN /bin/sh -c mkdir -p /root/.ssh # buildkit |
COPY conf/ssh_config /root/.ssh/config # buildkit |
COPY conf/hosts /etc/hosts # buildkit |
COPY conf/dnf.conf /etc/dnf/dnf.conf # buildkit |
COPY python/requirements-centos.txt /tmp/requirements.txt # buildkit |
RUN /bin/sh -c 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 # buildkit |
COPY ansible/ansible-check.yml /tmp/ansible-check.yml # buildkit |
WORKDIR /root |
CMD ["/bin/bash"] |