23 lines
657 B
Docker
23 lines
657 B
Docker
FROM ubuntu:latest
|
|
|
|
MAINTAINER Ding Corporation
|
|
|
|
VOLUME /var/mail /config /output
|
|
|
|
# install packages
|
|
RUN apt-get update \
|
|
&& apt-get install -y fetchmail maildrop mpack \
|
|
&& apt-get clean && rm -fr /var/lib/apt/lists/*
|
|
|
|
RUN maildirmake /var/mail/working \
|
|
&& echo "to /var/mail/working" > /root/.mailfilter
|
|
RUN touch /var/mail/save-attachments.log
|
|
|
|
ADD save-attachments.crontab /etc/cron.d/save-attachments
|
|
ADD save-attachments.sh /opt/save-attachments.sh
|
|
RUN chmod 0644 /etc/cron.d/save-attachments
|
|
|
|
ADD docker-entrypoint.sh /opt/docker-entrypoint.sh
|
|
ENTRYPOINT ["/opt/docker-entrypoint.sh"]
|
|
CMD cron && tail -f /var/mail/save-attachments.log
|