From a92567d0cbb28d6357722d22a6df8849e8891d67 Mon Sep 17 00:00:00 2001 From: Petr Khartskhaev Date: Thu, 23 Oct 2025 17:34:28 +0200 Subject: [PATCH] Removed the bind-utils dependency as it is not used anywhere --- 2.4/Dockerfile.c10s | 2 +- 2.4/Dockerfile.c9s | 2 +- 2.4/Dockerfile.fedora | 2 +- 2.4/Dockerfile.rhel10 | 2 +- 2.4/Dockerfile.rhel8 | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/2.4/Dockerfile.c10s b/2.4/Dockerfile.c10s index 673c3fdb..7fb5b477 100644 --- a/2.4/Dockerfile.c10s +++ b/2.4/Dockerfile.c10s @@ -36,7 +36,7 @@ LABEL summary="${SUMMARY}" \ EXPOSE 8080 EXPOSE 8443 -RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session sscg" && \ +RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs httpd mod_ssl mod_ldap mod_session sscg" && \ dnf install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \ httpd -v | grep -qe "Apache/${HTTPD_VERSION}" && echo "Found VERSION ${HTTPD_VERSION}" && \ dnf -y clean all --enablerepo='*' diff --git a/2.4/Dockerfile.c9s b/2.4/Dockerfile.c9s index 65da8062..446c61c0 100644 --- a/2.4/Dockerfile.c9s +++ b/2.4/Dockerfile.c9s @@ -35,7 +35,7 @@ LABEL summary="${SUMMARY}" \ EXPOSE 8080 EXPOSE 8443 -RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \ +RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \ yum install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \ httpd -v | grep -qe "Apache/${HTTPD_VERSION}" && echo "Found VERSION ${HTTPD_VERSION}" && \ yum -y clean all --enablerepo='*' diff --git a/2.4/Dockerfile.fedora b/2.4/Dockerfile.fedora index 6897bd91..43833fd2 100644 --- a/2.4/Dockerfile.fedora +++ b/2.4/Dockerfile.fedora @@ -36,7 +36,7 @@ EXPOSE 8080 EXPOSE 8443 RUN dnf install -y yum-utils gettext hostname && \ - INSTALL_PKGS="nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session mod_security sscg" && \ + INSTALL_PKGS="nss_wrapper-libs httpd mod_ssl mod_ldap mod_session mod_security sscg" && \ dnf install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \ httpd -v | grep -qe "Apache/${HTTPD_VERSION}" && echo "Found VERSION ${HTTPD_VERSION}" && \ dnf clean all diff --git a/2.4/Dockerfile.rhel10 b/2.4/Dockerfile.rhel10 index bc4875fa..07271373 100644 --- a/2.4/Dockerfile.rhel10 +++ b/2.4/Dockerfile.rhel10 @@ -35,7 +35,7 @@ LABEL summary="${SUMMARY}" \ EXPOSE 8080 EXPOSE 8443 -RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session sscg" && \ +RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs httpd mod_ssl mod_ldap mod_session sscg" && \ dnf install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \ httpd -v | grep -qe "Apache/${HTTPD_VERSION}" && echo "Found VERSION ${HTTPD_VERSION}" && \ dnf -y clean all --enablerepo='*' diff --git a/2.4/Dockerfile.rhel8 b/2.4/Dockerfile.rhel8 index b5be809e..c2c508a6 100644 --- a/2.4/Dockerfile.rhel8 +++ b/2.4/Dockerfile.rhel8 @@ -34,7 +34,7 @@ EXPOSE 8080 EXPOSE 8443 RUN yum -y module enable httpd:$HTTPD_VERSION && \ - INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \ + INSTALL_PKGS="gettext hostname nss_wrapper-libs httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \ yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ rpm -V $INSTALL_PKGS && \ httpd -v | grep -qe "Apache/$HTTPD_VERSION" && echo "Found VERSION $HTTPD_VERSION" && \