Add bluetooth support

This commit is contained in:
jeanGaston 2024-01-30 10:00:03 +01:00
parent 7e49c1a408
commit 5e1a48b523

View File

@ -9,6 +9,10 @@ COPY ./main.py /app/
# Install any dependencies
RUN pip3 install --no-cache-dir bluepy
RUN apt-get update
RUN apt-get install -y bluez bluetooth
RUN service dbus start bluetoothd
# Set the entry point
CMD ["python", "main.py"]