Implement transactional invitation mail 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 21:28:41 +02:00
parent eda3896228
commit 980b9fab44
6 changed files with 274 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 email-connect
WORKDIR /app
COPY pyproject.toml README.md LICENSE ./
COPY src ./src
RUN pip install --no-cache-dir .
USER 10001
EXPOSE 8080
CMD ["email-connect-transactional"]