mirror of
https://github.com/house-of-vanity/lywsd03mmc_exporter.git
synced 2025-07-07 07:14:09 +00:00
13 lines
248 B
Docker
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
|