Compare commits

...

2 Commits

Author SHA1 Message Date
aabd87ebf7 Merge branch 'main' of https://git.ao-it.net/docker/icinga-satellite
All checks were successful
build container icinga2-stallite / build (push) Successful in -1h29m8s
2025-09-20 18:51:25 +02:00
382251fd13 add mqtt python lib sys wide 2025-09-20 18:50:02 +02:00

View File

@@ -27,7 +27,11 @@ RUN ["bash", "-exo", "pipefail", "-c", "\
## install feature requirements for checks
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/* "]