diff --git a/addon-dev/Dockerfile b/addon-dev/Dockerfile index 3589e54..dfee8b1 100644 --- a/addon-dev/Dockerfile +++ b/addon-dev/Dockerfile @@ -13,6 +13,7 @@ RUN apk add --no-cache python3 py3-pip git && \ python3 -m pip install --upgrade pip && \ pip3 install pyyaml && \ pip3 install tinydb && \ + pip3 install setuptools && \ pip3 install paho-mqtt==1.6.1 && \ pip3 install git+https://github.com/mak-gitdev/enocean.git && \ git clone -b master --single-branch --depth 1 https://github.com/embyt/enocean-mqtt.git && \ diff --git a/addon/Dockerfile b/addon/Dockerfile index e9812e9..ae77763 100644 --- a/addon/Dockerfile +++ b/addon/Dockerfile @@ -11,6 +11,7 @@ RUN apk add --no-cache python3 py3-pip git && \ python3 -m pip install --upgrade pip && \ pip3 install pyyaml && \ pip3 install tinydb && \ + pip3 install setuptools && \ pip3 install git+https://github.com/mak-gitdev/enocean.git && \ git clone https://github.com/embyt/enocean-mqtt.git && \ cd enocean-mqtt && python3 setup.py develop && cd .. && \