Files
vikunja-mail-parser/Dockerfile-oneshot
2025-10-01 11:31:37 +00:00

14 lines
236 B
Plaintext

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"]