From b4d8b8df0fa5ded2087213b120d747095109e3fd Mon Sep 17 00:00:00 2001 From: amass <168062547@qq.com> Date: Wed, 13 Nov 2024 21:07:24 +0800 Subject: [PATCH] add tcping for ubuntu22.04 --- Dockerfiles/ubuntu2204.dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfiles/ubuntu2204.dockerfile b/Dockerfiles/ubuntu2204.dockerfile index 7bcf035..4759e28 100644 --- a/Dockerfiles/ubuntu2204.dockerfile +++ b/Dockerfiles/ubuntu2204.dockerfile @@ -101,6 +101,10 @@ RUN cd /root \ && cmake --install build \ && rm -fr /root/wt-${WT_VERSION}* +RUN wget https://github.com/pouriyajamshidi/tcping/releases/download/v2.6.0/tcping_Linux.tar.gz -O /tmp/tcping_Linux.tar.gz \ + && tar -xzf /tmp/tcping_Linux.tar.gz -C /usr/bin \ + && rm /tmp/tcping_Linux.tar.gz + RUN cd /root \ && git clone --depth=1 --recursive https://github.com/ZLMediaKit/ZLMediaKit.git \ && cd /root/ZLMediaKit \