Initial commit for projmon branch

This commit is contained in:
2026-02-05 11:56:17 +01:00
parent a54c8e566b
commit 64e2cb2dee
12 changed files with 1373 additions and 26 deletions

View File

@@ -0,0 +1,12 @@
FROM python:3.12-alpine
ARG BUILD_VER
RUN apk update && apk upgrade --no-cache
RUN pip install --no-cache-dir influxdb3-python xmltodict requests
COPY ./projmon.py /home/projmon.py
COPY ./utils.py /home/pyutils/utils.py
ENV VER=${BUILD_VER}
CMD [ "python", "/home/projmon.py" ]