Initial commit: MCP email server with IMAP/SMTP, CalDAV/CardDAV, conflict check

This commit is contained in:
Admin
2026-06-16 02:14:39 +00:00
commit 3ca682592e
4 changed files with 1846 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY server.py .
ENV PORT=8000
EXPOSE 8000
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8000"]