12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- FROM rockylinux/rockylinux:8.5
- RUN dnf install -y \
- epel-release \
- && dnf clean all \
- && rm -rf /var/cache/dnf
- RUN mkdir /root/omnia
- RUN dnf install -y mod_ssl \
- python3-librepo \
- python3-schema \
- syslinux \
- wget \
- dhcp-server \
- pykickstart \
- dnf-plugins-core \
- cronie \
- xinetd \
- python3-coverage \
- python3-cheetah \
- python3-netaddr \
- python3-distro \
- python3-devel \
- python3-future \
- python3-mod_wsgi \
- gcc \
- xinetd \
- epel-rpm-macros \
- rpm-build \
- ansible \
- make \
- grub2-efi-x64-modules \
- efibootmgr \
- && dnf clean all \
- && rm -rf /var/cache/dnf
- RUN yum install -y grub2-efi-x64 shim-x64
- RUN yum install -y yum-utils
- RUN dnf config-manager --set-enabled powertools
- RUN dnf install -y python3-sphinx
- RUN pip3 install wheel
- RUN dnf module enable -y cobbler
- RUN dnf install -y cobbler
- RUN dnf install -y cobbler-web
- #Copy Configuration files
- COPY settings.yaml /etc/cobbler/settings.yaml
- COPY dhcp.template /etc/cobbler/dhcp.template
- COPY modules.conf /etc/cobbler/modules.conf
- COPY tftp /etc/xinetd.d/tftp
- COPY .users.digest /etc/cobbler/users.digest
- COPY cobbler_configurations.yml /root
- COPY tftp.yml /root
- COPY inventory_creation.yml /root
- EXPOSE 69 80 443 25151
- VOLUME [ "/var/www/cobbler", "/var/lib/cobbler/backup", "/mnt" ]
- RUN systemctl enable httpd
- RUN systemctl enable dhcpd
- CMD ["sbin/init"]
|