From f296a02f6ae7e90ad8776357aa55748f650a2cc7 Mon Sep 17 00:00:00 2001 From: smiletan Date: Wed, 18 Dec 2024 19:21:04 +0800 Subject: [PATCH] [improve](docker)add iperf for base image when debug network (#45503) ### What problem does this PR solve? Issue Number: close #xxx Related PR: #xxx Problem Summary: ### Release note None ### Check List (For Author) - Test - [ ] Regression test - [ ] Unit Test - [ ] Manual test (add detailed scripts or steps below) - [x] No need to test or manual test. Explain why: - [ ] This is a refactor/code format and no logic has been changed. - [ ] Previous test can cover this change. - [x] No code files have been changed. - [ ] Other reason - Behavior changed: - [x] No. - [ ] Yes. - Does this need documentation? - [x] No. - [ ] Yes. ### Check List (For Reviewer who merge this PR) - [ ] Confirm the release note - [ ] Confirm test cases - [ ] Confirm document - [ ] Add branch pick label --- docker/runtime/base-image/Dockerfile_base | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/runtime/base-image/Dockerfile_base b/docker/runtime/base-image/Dockerfile_base index d589a28946d446..2c035239a56112 100644 --- a/docker/runtime/base-image/Dockerfile_base +++ b/docker/runtime/base-image/Dockerfile_base @@ -28,7 +28,7 @@ ARG TARGETARCH RUN sed -i -e 's/^APT/# APT/' -e 's/^DPkg/# DPkg/' /etc/apt/apt.conf.d/docker-clean && \ apt-get update -y && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - patchelf gdb binutils binutils-common mysql-client \ + patchelf gdb binutils binutils-common mysql-client iperf3\ curl wget less vim htop iproute2 numactl jq iotop sysstat \ tcpdump iputils-ping dnsutils strace lsof blktrace tzdata \ bpfcc-tools linux-headers-realtime linux-tools-realtime silversearcher-ag \ @@ -43,4 +43,4 @@ RUN sed -i -e 's/^APT/# APT/' -e 's/^DPkg/# DPkg/' /etc/apt/apt.conf.d/docker-cl COPY --from=selectdb/doris-debug-ubuntu:latest /doris-debug /opt/apache-doris/ -WORKDIR /opt/apache-doris \ No newline at end of file +WORKDIR /opt/apache-doris