feat: add SMTP proxy server (#177)

This commit is contained in:
Dream Hunter
2024-04-29 21:47:15 +08:00
committed by GitHub
parent 23d1709ca1
commit a456bfda7c
13 changed files with 482 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt /requirements.txt
RUN python3 -m pip install -r /requirements.txt
COPY . /app
ENTRYPOINT [ "python3", "server.py" ]