From a2475635852f1910512245e6ff67b3ae718d4d79 Mon Sep 17 00:00:00 2001 From: Rainer Maier Date: Wed, 29 Oct 2025 20:25:33 +0100 Subject: [PATCH] added iperf3 binary --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4138554..c8ba1df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,10 @@ FROM zabbix/zabbix-agent2:alpine-6.4.21 USER root # force installation of python3 and pip3 -RUN apk add --update --no-cache python3 py3-pip \ - && rm -rf /var/cache/apk/* +RUN apk add --update --no-cache \ + python3 py3-pip \ + iperf3 \ + && rm -rf /var/cache/apk/* RUN pip3 install \ urbackup-server-web-api-wrapper \