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:
@@ -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"]
|
||||
Reference in New Issue
Block a user