This commit is contained in:
A B
2023-10-30 17:24:42 +00:00
parent 168e09e105
commit 5f9a5442db
4 changed files with 117 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM python:slim
WORKDIR /app
COPY requirements.txt ./
RUN apt update && apt install -y make clang libglib2.0-dev bluez dbus
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
#CMD [ "python", "./bt_exporter.py" ]
CMD ./entrypoint.sh