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 enabled
This commit is contained in:
parent
169f054c6c
commit
91e36f380b
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ RUN pip3 install --no-cache-dir colorlog cython
|
|||
|
||||
# For the nmap tracker, bluetooth tracker, Z-Wave
|
||||
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/*
|
||||
|
||||
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
|
||||
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/*
|
||||
|
||||
RUN pip3 install --no-cache-dir tox
|
||||
|
|
Loading…
Add table
Reference in a new issue