From 5e1a48b5237148279f5d26f342546f3428c0b88c Mon Sep 17 00:00:00 2001 From: jeanGaston Date: Tue, 30 Jan 2024 10:00:03 +0100 Subject: [PATCH] Add bluetooth support --- DataScraper/DOCKERFILE | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DataScraper/DOCKERFILE b/DataScraper/DOCKERFILE index 3e7dfbd..e594d79 100644 --- a/DataScraper/DOCKERFILE +++ b/DataScraper/DOCKERFILE @@ -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"] \ No newline at end of file