Implement transactional invitation mail service
This commit is contained in:
parent
eda3896228
commit
980b9fab44
6 changed files with 274 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 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue