diff --git a/hass/Dockerfile.debian b/hass/Dockerfile.debian index 4903ce6..7c25e47 100644 --- a/hass/Dockerfile.debian +++ b/hass/Dockerfile.debian @@ -8,6 +8,7 @@ MAINTAINER EasyPi Software Foundation RUN set -xe \ && apt-get update \ && apt-get install -y build-essential \ + bluez \ curl \ libbluetooth3 \ libbluetooth-dev \ @@ -22,6 +23,7 @@ RUN set -xe \ && pip3 install --no-cache-dir gattlib \ homeassistant \ pybluez \ + && setcap 'cap_net_raw,cap_net_admin+eip' /usr/bin/python3.4 \ && apt-get remove -y curl \ libbluetooth-dev \ libboost-python-dev \ diff --git a/hass/arm/Dockerfile.debian b/hass/arm/Dockerfile.debian index fefa317..ced5b8d 100644 --- a/hass/arm/Dockerfile.debian +++ b/hass/arm/Dockerfile.debian @@ -8,6 +8,7 @@ MAINTAINER EasyPi Software Foundation RUN set -xe \ && apt-get update \ && apt-get install -y build-essential \ + bluez \ curl \ libbluetooth3 \ libbluetooth-dev \ @@ -22,6 +23,7 @@ RUN set -xe \ && pip3 install --no-cache-dir gattlib \ homeassistant \ pybluez \ + && setcap 'cap_net_raw,cap_net_admin+eip' /usr/bin/python3.4 \ && apt-get remove -y curl \ libbluetooth-dev \ libboost-python-dev \