Implement durable event ingestion service
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s

This commit is contained in:
tegwick 2026-08-09 20:59:14 +02:00
parent 254ed92027
commit be85ce7c43
6 changed files with 293 additions and 0 deletions

9
Containerfile Normal file
View file

@ -0,0 +1,9 @@
FROM python:3.12-slim
RUN useradd --system --uid 10001 --create-home audit-core
WORKDIR /app
COPY pyproject.toml README.md LICENSE ./
COPY audit_core ./audit_core
RUN pip install --no-cache-dir .
USER 10001
EXPOSE 8080
CMD ["audit-core-ingest"]