FROM debian:bookworm MAINTAINER yohan <783b8c87@scimetis.net> ENV DEBIAN_FRONTEND noninteractive ENV TZ Europe/Paris RUN apt-get update && apt-get -y install curl gunicorn sqlite3 python3-pip python3-requests python3-yaml python3-flask python3-serial udev ow-shell; rm -rf /var/lib/apt/lists/* ENV PIP_BREAK_SYSTEM_PACKAGES 1 RUN pip install teleinfo WORKDIR /root RUN curl -s -o YoctoLib.cmdline.24497.tar.gz "https://cloud.scimetis.net/s/y7WengZWJpYnGpr/download" RUN tar xzvf YoctoLib.cmdline.24497.tar.gz COPY find_ttyUSB.sh /root/ COPY read_one-wire_sensor.py /root/ COPY read_teleinfo.py /root/ COPY read_yocto_sensor.py /root/ COPY sensors-polling.py /root/ ENTRYPOINT ["/root/sensors-polling.py"]