14 lines
236 B
Plaintext
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"]
|
|
|