publish my redfish_exporter

This commit is contained in:
2025-11-13 10:29:29 +01:00
parent 581df6617b
commit 5e68842356
8 changed files with 525 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
FROM python:3
EXPOSE 8000
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY redfish_exporter.py .
COPY config.yaml .
CMD [ "python", "./redfish_exporter.py" ]