From abf007d7d8e9716fc7b82dee29bd81eb3741115f Mon Sep 17 00:00:00 2001
From: anima
Date: Sat, 20 Sep 2025 18:48:51 +0200
Subject: [PATCH] add mqtt python lib sys wide
---
Dockerfile | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Dockerfile b/Dockerfile
index 5808dc1..856307a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -29,7 +29,11 @@ RUN ["bash", "-exo", "pipefail", "-c", "\
# ARG SOURCELIST_FILE="/etc/apt/sources.list.d/debian.sources"
RUN ["bash", "-exo", "pipefail", "-c", "\
apt update ; \
- apt-get install -y python3-requests python3-easysnmp python3-nagiosplugin; \
+ apt-get install -y \
+ python3-requests \
+ python3-easysnmp \
+ python3-paho-mqtt \
+ python3-nagiosplugin; \
apt clean all ; \
rm -vrf /var/lib/apt/lists/* "]