Add CentralLogging stack, Covance/EDC sources, email import + IWRS scripts

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-08 16:06:21 +02:00
parent af787d9f02
commit 5545f05eee
173 changed files with 21334 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
# ============================================================================
# CentralLogging — Log Gateway image
# Verze: 1.0
# Datum: 2026-06-08
# ============================================================================
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY log_gateway_v1.0.py .
COPY main.py .
EXPOSE 8770
# main.py je shim, který přes importlib načte verzovaný log_gateway_v1.0.py
# (uvicorn neumí import názvu s tečkou).
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8770"]