Skip to content

Commit 28cdb3f

Browse files
pkhartskphracek
authored andcommitted
Removed the bind-utils dependency as it is not used anywhere
1 parent 3549f3c commit 28cdb3f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

2.4/Dockerfile.c10s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ LABEL summary="${SUMMARY}" \
3636
EXPOSE 8080
3737
EXPOSE 8443
3838

39-
RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session sscg" && \
39+
RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs httpd mod_ssl mod_ldap mod_session sscg" && \
4040
dnf install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \
4141
httpd -v | grep -qe "Apache/${HTTPD_VERSION}" && echo "Found VERSION ${HTTPD_VERSION}" && \
4242
dnf -y clean all --enablerepo='*'

2.4/Dockerfile.c9s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ LABEL summary="${SUMMARY}" \
3535
EXPOSE 8080
3636
EXPOSE 8443
3737

38-
RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \
38+
RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \
3939
yum install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \
4040
httpd -v | grep -qe "Apache/${HTTPD_VERSION}" && echo "Found VERSION ${HTTPD_VERSION}" && \
4141
yum -y clean all --enablerepo='*'

2.4/Dockerfile.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ EXPOSE 8080
3636
EXPOSE 8443
3737

3838
RUN dnf install -y yum-utils gettext hostname && \
39-
INSTALL_PKGS="nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session mod_security sscg" && \
39+
INSTALL_PKGS="nss_wrapper-libs httpd mod_ssl mod_ldap mod_session mod_security sscg" && \
4040
dnf install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \
4141
httpd -v | grep -qe "Apache/${HTTPD_VERSION}" && echo "Found VERSION ${HTTPD_VERSION}" && \
4242
dnf clean all

2.4/Dockerfile.rhel10

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ LABEL summary="${SUMMARY}" \
3535
EXPOSE 8080
3636
EXPOSE 8443
3737

38-
RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session sscg" && \
38+
RUN INSTALL_PKGS="gettext hostname nss_wrapper-libs httpd mod_ssl mod_ldap mod_session sscg" && \
3939
dnf install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \
4040
httpd -v | grep -qe "Apache/${HTTPD_VERSION}" && echo "Found VERSION ${HTTPD_VERSION}" && \
4141
dnf -y clean all --enablerepo='*'

2.4/Dockerfile.rhel8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ EXPOSE 8080
3434
EXPOSE 8443
3535

3636
RUN yum -y module enable httpd:$HTTPD_VERSION && \
37-
INSTALL_PKGS="gettext hostname nss_wrapper-libs bind-utils httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \
37+
INSTALL_PKGS="gettext hostname nss_wrapper-libs httpd mod_ssl mod_ldap mod_session mod_security mod_auth_mellon sscg" && \
3838
yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
3939
rpm -V $INSTALL_PKGS && \
4040
httpd -v | grep -qe "Apache/$HTTPD_VERSION" && echo "Found VERSION $HTTPD_VERSION" && \

0 commit comments

Comments
 (0)