From db5d9e618f994c7ef8f77f5971ec086bb4512069 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Sun, 25 Jan 2026 13:58:41 -0600 Subject: [PATCH] just python support --- DMS/Dockerfile | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/DMS/Dockerfile b/DMS/Dockerfile index 09efda6..bcbd697 100644 --- a/DMS/Dockerfile +++ b/DMS/Dockerfile @@ -1,7 +1,7 @@ FROM docker.io/mailserver/docker-mailserver:latest -LABEL maintainer="andreas@knuth.dev" -LABEL description="Custom DMS with content filter support" +LABEL maintainer="andreas.knuth@bayarea-cc.com" +LABEL description="Custom DMS with Python3 support" # Install Python and boto3 RUN apt-get update && \ @@ -10,12 +10,4 @@ RUN apt-get update && \ python3-pip \ && pip3 install --break-system-packages --no-cache-dir boto3 \ && apt-get clean \ - && rm -rf /var/lib/apt/lists/* - -# Copy content filter script -COPY content_filter.py /usr/local/bin/content_filter.py -RUN chmod +x /usr/local/bin/content_filter.py - -# Create log file with correct permissions -RUN touch /var/log/mail/content_filter.log && \ - chown mail:mail /var/log/mail/content_filter.log \ No newline at end of file + && rm -rf /var/lib/apt/lists/* \ No newline at end of file