This is an automated email from the ASF dual-hosted git repository. roryqi pushed a commit to branch branch-0.10.bak in repository https://gitbox.apache.org/repos/asf/uniffle.git
commit 562fa7304ff9f5647474119c83ece8e9294141f5 Author: roryqi <[email protected]> AuthorDate: Mon Dec 16 13:33:44 2024 +0800 [#2290] docker: Fix the build of Centos image (#2291) ### What changes were proposed in this pull request? Fix the build of Centos image ### Why are the changes needed? Fix #2290 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Tested locally. --- deploy/kubernetes/docker/base/centos/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/kubernetes/docker/base/centos/Dockerfile b/deploy/kubernetes/docker/base/centos/Dockerfile index 4d9a5346f..275e8aadb 100644 --- a/deploy/kubernetes/docker/base/centos/Dockerfile +++ b/deploy/kubernetes/docker/base/centos/Dockerfile @@ -25,6 +25,6 @@ RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* && \ yum clean all && \ yum makecache -RUN yum install lzo zlib zlib-devel lzop lsof netcat dnsutils less procps iputils-ping -y && \ +RUN yum install lzo zlib zlib-devel lzop lsof netcat dnsutils less procps iputils-ping which -y && \ yum clean all && \ rm -rf /var/cache/yum
