docker-fetchmail/Dockerfile

8 lines
349 B
Docker
Raw Permalink Normal View History

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 21:56:25 +00:00
RUN apt-get update && apt-get -y install fetchmail netbase
#COPY fetchmailrc /etc/
2019-07-15 09:57:04 +00:00
ENTRYPOINT ["/usr/bin/fetchmail", "-N", "-f", "/etc/fetchmailrc", "-d", "300"]