added shit

This commit is contained in:
2024-07-07 10:08:19 +02:00
parent 3bdc429850
commit ef6e17b19d
12 changed files with 643 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
FROM python:3.8-alpine
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY /src/exporter.py .
RUN python -m pip install --upgrade pip
RUN pip install --root-user-action=ignore --upgrade goodwe asyncio aiohttp prometheus_client
ENTRYPOINT ["python", "exporter.py"]