chore: add documented POP3/SMTP proxy scaffold and Renovate config

This commit is contained in:
2026-06-17 16:08:06 +01:00
parent a41fbf04da
commit e6eca290ba
6 changed files with 478 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.12-slim
WORKDIR /app
ENV PYTHONUNBUFFERED=1
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY proxy_server.py ./
EXPOSE 110 25
CMD ["python", "proxy_server.py"]