2019-07-15 17:58:14 +00:00
|
|
|
FROM debian:buster
|
2019-07-15 09:57:04 +00:00
|
|
|
MAINTAINER yohan <783b8c87@scimetis.net>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
2019-07-15 17:58:14 +00:00
|
|
|
RUN echo "deb http://http.debian.net/debian buster-backports main" >> /etc/apt/sources.list
|
2019-07-15 09:57:04 +00:00
|
|
|
RUN apt-get update && apt-get -y install fetchmail
|
2019-07-15 10:05:02 +00:00
|
|
|
#COPY fetchmailrc /etc/
|
2019-07-15 09:57:04 +00:00
|
|
|
ENTRYPOINT ["/usr/bin/fetchmail", "-N", "-f", "/etc/fetchmailrc", "-d", "300"]
|