This is an automated email from the ASF dual-hosted git repository.
xianjin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 5ddcc28fa replace netcat to netcat-openbsd in Dockerfile (#1950)
5ddcc28fa is described below
commit 5ddcc28fa0bc1254dfd5805297ea90670304704e
Author: xianjingfeng <[email protected]>
AuthorDate: Wed Jul 24 20:53:22 2024 +0800
replace netcat to netcat-openbsd in Dockerfile (#1950)
### What changes were proposed in this pull request?
Replace netcat to netcat-openbsd in Dockerfile.
### Why are the changes needed?
On Debian, netcat isn’t a package, as two “variations” of netcat exist in
the package repository.
https://github.com/apache/incubator-uniffle/actions/runs/10073085326/job/27848719086?pr=1948
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
CI
---
deploy/kubernetes/docker/base/debian/Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/deploy/kubernetes/docker/base/debian/Dockerfile
b/deploy/kubernetes/docker/base/debian/Dockerfile
index 901d0fd16..c16e40eda 100644
--- a/deploy/kubernetes/docker/base/debian/Dockerfile
+++ b/deploy/kubernetes/docker/base/debian/Dockerfile
@@ -20,5 +20,5 @@ ARG BASE_IMAGE=eclipse-temurin:11-jdk
FROM ${BASE_IMAGE}
RUN apt-get update && \
- apt-get install -y zlib1g zlib1g-dev lzop lsof netcat dnsutils less procps
iputils-ping && \
+ apt-get install -y zlib1g zlib1g-dev lzop lsof netcat-openbsd dnsutils
less procps iputils-ping && \
apt-get clean && rm -rf /var/lib/apt/lists/*