mirror of
https://github.com/d3vyce/teleinfo-exporter.git
synced 2025-04-01 15:53:22 +02:00
9 lines
161 B
Docker
9 lines
161 B
Docker
FROM python:3.12-slim
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY src/ /opt/
|
|
|
|
CMD [ "python3", "/opt/teleinfo_exporter" ]
|