Implement durable event ingestion service
This commit is contained in:
parent
254ed92027
commit
be85ce7c43
6 changed files with 293 additions and 0 deletions
9
Containerfile
Normal file
9
Containerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue