Add internal mTLS bridge service for monitoring stack

This commit is contained in:
beatz174-bit
2026-04-13 13:18:40 +10:00
parent 6f47e654a8
commit cd47fe324e
5 changed files with 139 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 8080
CMD ["python", "app.py"]