Skip to content

Commit e135494

Browse files
pkhartskphracek
authored andcommitted
Removed the bind-utils dependency as it is not used anywhere
1 parent 2535a3e commit e135494

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

8.0/Dockerfile.c9s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ EXPOSE 3306
4141
# This image must forever use UID 27 for mysql 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="policycoreutils rsync tar gettext hostname bind-utils groff-base ${NAME}-server" && \
44+
RUN INSTALL_PKGS="policycoreutils rsync tar gettext hostname groff-base ${NAME}-server" && \
4545
yum install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \
4646
rpm -V ${INSTALL_PKGS} && \
4747
yum -y clean all --enablerepo='*' && \

8.0/Dockerfile.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ EXPOSE 3306
4242
RUN /usr/sbin/groupadd -g 27 -o -r mysql && \
4343
/usr/sbin/useradd -M -N -g mysql -o -r -d ${HOME} -s /sbin/nologin -c "MySQL Server" -u 27 mysql && \
4444
test "$(id mysql)" = "uid=27(mysql) gid=27(mysql) groups=27(mysql)" && \
45-
INSTALL_PKGS="rsync tar gettext hostname bind-utils groff-base policycoreutils" && \
45+
INSTALL_PKGS="rsync tar gettext hostname groff-base policycoreutils" && \
4646
dnf install -y --setopt=tsflags=nodocs --setopt=install_weak_deps=False ${INSTALL_PKGS} ${NAME}${MYSQL_VERSION}-server && \
4747
dnf -y clean all --enablerepo='*' && \
4848
mkdir -p ${HOME}/data && chown -R mysql.0 ${HOME} && \

8.0/Dockerfile.rhel8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ EXPOSE 3306
3939
# safe in the future. This should *never* change, the last test is there
4040
# to make sure of that.
4141
RUN yum -y module enable mysql:$MYSQL_VERSION && \
42-
INSTALL_PKGS="policycoreutils rsync tar gettext hostname bind-utils groff-base mysql-server" && \
42+
INSTALL_PKGS="policycoreutils rsync tar gettext hostname groff-base mysql-server" && \
4343
yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
4444
rpm -V $INSTALL_PKGS && \
4545
yum -y clean all --enablerepo='*' && \

8.4/Dockerfile.c10s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ EXPOSE 3306
4141
# This image must forever use UID 27 for mysql 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="policycoreutils rsync tar gettext hostname bind-utils groff-base procps-ng" && \
44+
RUN INSTALL_PKGS="policycoreutils rsync tar gettext hostname groff-base procps-ng" && \
4545
dnf install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} ${NAME}${MYSQL_VERSION}-server && \
4646
dnf -y clean all --enablerepo='*' && \
4747
mkdir -p ${HOME}/data && chown -R mysql:root ${HOME} && \

8.4/Dockerfile.c9s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ EXPOSE 3306
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 ${NAME}:${MYSQL_VERSION} && \
45-
INSTALL_PKGS="policycoreutils rsync tar gettext hostname bind-utils groff-base ${NAME}-server" && \
45+
INSTALL_PKGS="policycoreutils rsync tar gettext hostname groff-base ${NAME}-server" && \
4646
dnf install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} && \
4747
rpm -V ${INSTALL_PKGS} && \
4848
dnf -y clean all --enablerepo='*' && \

8.4/Dockerfile.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ EXPOSE 3306
4242
RUN /usr/sbin/groupadd -g 27 -o -r mysql && \
4343
/usr/sbin/useradd -M -N -g mysql -o -r -d ${HOME} -s /sbin/nologin -c "MySQL Server" -u 27 mysql && \
4444
test "$(id mysql)" = "uid=27(mysql) gid=27(mysql) groups=27(mysql)" && \
45-
INSTALL_PKGS="rsync tar gettext hostname bind-utils groff-base policycoreutils" && \
45+
INSTALL_PKGS="rsync tar gettext hostname groff-base policycoreutils" && \
4646
dnf install -y --setopt=tsflags=nodocs --setopt=install_weak_deps=False ${INSTALL_PKGS} ${NAME}${MYSQL_VERSION}-server && \
4747
dnf -y clean all --enablerepo='*' && \
4848
mkdir -p ${HOME}/data && chown -R mysql:root ${HOME} && \

8.4/Dockerfile.rhel10

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ EXPOSE 3306
4040
# This image must forever use UID 27 for mysql user so our volumes are
4141
# safe in the future. This should *never* change, the last test is there
4242
# to make sure of that.
43-
RUN INSTALL_PKGS="policycoreutils rsync tar gettext hostname bind-utils groff-base procps-ng" && \
43+
RUN INSTALL_PKGS="policycoreutils rsync tar gettext hostname groff-base procps-ng" && \
4444
dnf install -y --setopt=tsflags=nodocs ${INSTALL_PKGS} ${NAME}${MYSQL_VERSION}-server && \
4545
dnf -y clean all --enablerepo='*' && \
4646
mkdir -p ${HOME}/data && chown -R mysql:root ${HOME} && \

0 commit comments

Comments
 (0)