Files
lywsd03mmc_exporter/Dockerfile
2023-10-30 17:24:42 +00:00

13 lines
248 B
Docker

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