Add PyBluez to Dockerfile (#3423)
* Add PyBluez to Dockerfile Adds PyBluez to Dockerfile so people using Docker can run Bluetooth devices * Remove pip install of pybluez Pybluez will be installed automatically when the Bluetooth device tracker is enabledpull/3424/merge
parent
169f054c6c
commit
91e36f380b
|
@ -10,7 +10,7 @@ RUN pip3 install --no-cache-dir colorlog cython
|
||||||
|
|
||||||
# For the nmap tracker, bluetooth tracker, Z-Wave
|
# For the nmap tracker, bluetooth tracker, Z-Wave
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y --no-install-recommends nmap net-tools cython3 libudev-dev sudo libglib2.0-dev && \
|
apt-get install -y --no-install-recommends nmap net-tools cython3 libudev-dev sudo libglib2.0-dev bluetooth libbluetooth-dev && \
|
||||||
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||||
|
|
||||||
COPY script/build_python_openzwave script/build_python_openzwave
|
COPY script/build_python_openzwave script/build_python_openzwave
|
||||||
|
|
|
@ -10,7 +10,7 @@ RUN pip3 install --no-cache-dir colorlog cython
|
||||||
|
|
||||||
# For the nmap tracker, bluetooth tracker, Z-Wave
|
# For the nmap tracker, bluetooth tracker, Z-Wave
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y --no-install-recommends nmap net-tools cython3 libudev-dev sudo libglib2.0-dev locales-all && \
|
apt-get install -y --no-install-recommends nmap net-tools cython3 libudev-dev sudo libglib2.0-dev locales-all bluetooth libbluetooth-dev && \
|
||||||
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||||
|
|
||||||
RUN pip3 install --no-cache-dir tox
|
RUN pip3 install --no-cache-dir tox
|
||||||
|
|
Loading…
Reference in New Issue