Initial commit

This commit is contained in:
2023-12-19 22:24:29 +01:00
commit 2e58083957
14 changed files with 629 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM python:3.12-slim
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY src/ /opt/
CMD [ "python3", "/opt/teleinfo_exporter" ]