Add complete POP3 to Gmail forwarder implementation

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-01 12:14:05 +00:00
parent 124a118d95
commit aa9be83758
10 changed files with 1229 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY pop3_forwarder.py .
# Create non-root user for security
RUN useradd -m -u 1000 forwarder && \
chown -R forwarder:forwarder /app
USER forwarder
# Run the application
CMD ["python", "-u", "pop3_forwarder.py"]