From 0eb64bcf81101f5c4977e7816cf8dc2d1966e45b Mon Sep 17 00:00:00 2001 From: kev Date: Mon, 15 Jan 2024 13:22:57 +0800 Subject: [PATCH] apk add mosquitto-clients --- Dockerfile | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/Dockerfile b/Dockerfile index 54ee847..4a65dee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,21 +8,22 @@ MAINTAINER EasyPi Software Foundation ARG URLWATCH_VERSION RUN set -xe \ - && apk add --no-cache ca-certificates \ - bash \ - bind-tools \ - build-base \ - curl \ - jq \ - libffi-dev \ - libxml2 \ - libxml2-dev \ - libxslt \ - libxslt-dev \ - openssl-dev \ - python3 \ - python3-dev \ - tzdata \ + && apk add --no-cache ca-certificates \ + bash \ + bind-tools \ + build-base \ + curl \ + jq \ + libffi-dev \ + libxml2 \ + libxml2-dev \ + libxslt \ + libxslt-dev \ + mosquitto-clients \ + openssl-dev \ + python3 \ + python3-dev \ + tzdata \ && curl -sSL https://bootstrap.pypa.io/get-pip.py | python3 \ && pip3 install --no-binary lxml \ aioxmpp \