Skip to content

Commit 1af4f11

Browse files
committed
Removed the bind-utils dependency and usage of dig since it was never being called
1 parent f6bbc01 commit 1af4f11

File tree

14 files changed

+17
-34
lines changed

14 files changed

+17
-34
lines changed

12/Dockerfile.rhel8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4343
# safe in the future. This should *never* change, the last test is there
4444
# to make sure of that.
4545
RUN yum -y module enable postgresql:12 && \
46-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
46+
INSTALL_PKGS="rsync tar gettext nss_wrapper-libs postgresql-server postgresql-contrib" && \
4747
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4848
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4949
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

13/Dockerfile.c9s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4242
# safe in the future. This should *never* change, the last test is there
4343
# to make sure of that.
4444
RUN { yum -y module enable postgresql:13 || :; } && \
45-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
45+
INSTALL_PKGS="rsync tar gettext nss_wrapper-libs postgresql-server postgresql-contrib" && \
4646
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4747
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4848
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

13/Dockerfile.rhel8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4343
# safe in the future. This should *never* change, the last test is there
4444
# to make sure of that.
4545
RUN yum -y module enable postgresql:13 && \
46-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
46+
INSTALL_PKGS="rsync tar gettext nss_wrapper-libs postgresql-server postgresql-contrib" && \
4747
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4848
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4949
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

15/Dockerfile.c9s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4242
# safe in the future. This should *never* change, the last test is there
4343
# to make sure of that.
4444
RUN { yum -y module enable postgresql:15 || :; } && \
45-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
45+
INSTALL_PKGS="rsync tar gettext nss_wrapper-libs postgresql-server postgresql-contrib" && \
4646
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4747
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4848
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

15/Dockerfile.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4444
# This image must forever use UID 26 for postgres user so our volumes are
4545
# safe in the future. This should *never* change, the last test is there
4646
# to make sure of that.
47-
RUN INSTALL_PKGS="rsync tar gettext bind-utils postgresql15-server postgresql15-contrib nss_wrapper postgresql15-upgrade procps-ng util-linux" && \
47+
RUN INSTALL_PKGS="rsync tar gettext postgresql15-server postgresql15-contrib nss_wrapper postgresql15-upgrade procps-ng util-linux" && \
4848
INSTALL_PKGS+=" findutils xz" && \
4949
INSTALL_PKGS+=" postgresql15-pgaudit" && \
5050
dnf -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

15/Dockerfile.rhel8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4343
# safe in the future. This should *never* change, the last test is there
4444
# to make sure of that.
4545
RUN yum -y module enable postgresql:15 && \
46-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
46+
INSTALL_PKGS="rsync tar gettext nss_wrapper-libs postgresql-server postgresql-contrib" && \
4747
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4848
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4949
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

16/Dockerfile.c10s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4141
# This image must forever use UID 26 for postgres user so our volumes are
4242
# safe in the future. This should *never* change, the last test is there
4343
# to make sure of that.
44-
RUN INSTALL_PKGS="rsync tar gettext-envsubst bind-utils nss_wrapper-libs glibc-locale-source xz" && \
44+
RUN INSTALL_PKGS="rsync tar gettext-envsubst nss_wrapper-libs glibc-locale-source xz" && \
4545
PSQL_PKGS="postgresql16-server postgresql16-contrib postgresql16-upgrade" && \
4646
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4747
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS $PSQL_PKGS && \

16/Dockerfile.c9s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4242
# safe in the future. This should *never* change, the last test is there
4343
# to make sure of that.
4444
RUN { yum -y module enable postgresql:16 || :; } && \
45-
INSTALL_PKGS="rsync tar gettext bind-utils nss_wrapper-libs postgresql-server postgresql-contrib" && \
45+
INSTALL_PKGS="rsync tar gettext nss_wrapper-libs postgresql-server postgresql-contrib" && \
4646
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4747
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \
4848
yum -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \

16/Dockerfile.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4444
# This image must forever use UID 26 for postgres user so our volumes are
4545
# safe in the future. This should *never* change, the last test is there
4646
# to make sure of that.
47-
RUN INSTALL_PKGS="rsync tar gettext bind-utils postgresql-server postgresql-contrib nss_wrapper " && \
47+
RUN INSTALL_PKGS="rsync tar gettext postgresql-server postgresql-contrib nss_wrapper " && \
4848
INSTALL_PKGS+=" procps-ng util-linux postgresql-upgrade" && \
4949
INSTALL_PKGS+=" findutils xz" && \
5050
INSTALL_PKGS+=" pgaudit" && \

16/Dockerfile.rhel10

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions
4141
# This image must forever use UID 26 for postgres user so our volumes are
4242
# safe in the future. This should *never* change, the last test is there
4343
# to make sure of that.
44-
RUN INSTALL_PKGS="rsync tar gettext-envsubst bind-utils nss_wrapper-libs glibc-locale-source xz" && \
44+
RUN INSTALL_PKGS="rsync tar gettext-envsubst nss_wrapper-libs glibc-locale-source xz" && \
4545
PSQL_PKGS="postgresql16-server postgresql16-contrib" && \
4646
INSTALL_PKGS="$INSTALL_PKGS pgaudit" && \
4747
INSTALL_PKGS="$INSTALL_PKGS procps-ng util-linux postgresql-upgrade" && \

0 commit comments

Comments
 (0)