From dadf665bf3476fbb399fea866d0cf351f7f6629a Mon Sep 17 00:00:00 2001 From: Kijimuna Date: Thu, 6 Jun 2024 17:26:43 +0200 Subject: [PATCH 1/2] install setuptools for dev-addon --- addon-dev/Dockerfile | 1 + 1 file changed, 1 insertion(+) 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 && \ From 591a31efac41dc2e6d01bfff312cbf1474fdade8 Mon Sep 17 00:00:00 2001 From: Kijimuna Date: Thu, 6 Jun 2024 17:27:47 +0200 Subject: [PATCH 2/2] install setuptools in addon --- addon/Dockerfile | 1 + 1 file changed, 1 insertion(+) 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 .. && \