Dateien nach "/" hochladen

This commit is contained in:
2025-10-01 11:31:37 +00:00
commit f1f62572a9
5 changed files with 368 additions and 0 deletions

13
Dockerfile-oneshot Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.12-alpine
WORKDIR /app
# Install Python dependencies
RUN pip install --no-cache-dir requests beautifulsoup4
# Copy script and cronjob
COPY mail_parser.py /app/
# Run the python script
CMD ["python", "mail_parser.py"]