audit-core/Containerfile
tegwick be85ce7c43
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s
Implement durable event ingestion service
2026-08-09 20:59:14 +02:00

9 lines
245 B
Docker

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"]