This is an automated email from the ASF dual-hosted git repository.
xianjingfeng pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/branch-0.9 by this push:
new 7d95dbc91 replace netcat to netcat-openbsd in Dockerfile (#1950)
7d95dbc91 is described below
commit 7d95dbc9168227f65aa6f93aaf904ef7d3d01b78
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
(cherry picked from commit 5ddcc28fa0bc1254dfd5805297ea90670304704e)
---
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/*