Fix /etc/services missing.

This commit is contained in:
yohan 2019-07-15 23:56:25 +02:00
parent e60c00c3d0
commit c38bc25e9c

View File

@ -2,6 +2,6 @@ FROM debian:buster
MAINTAINER yohan <783b8c87@scimetis.net> MAINTAINER yohan <783b8c87@scimetis.net>
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive
RUN echo "deb http://http.debian.net/debian buster-backports main" >> /etc/apt/sources.list RUN echo "deb http://http.debian.net/debian buster-backports main" >> /etc/apt/sources.list
RUN apt-get update && apt-get -y install fetchmail RUN apt-get update && apt-get -y install fetchmail netbase
#COPY fetchmailrc /etc/ #COPY fetchmailrc /etc/
ENTRYPOINT ["/usr/bin/fetchmail", "-N", "-f", "/etc/fetchmailrc", "-d", "300"] ENTRYPOINT ["/usr/bin/fetchmail", "-N", "-f", "/etc/fetchmailrc", "-d", "300"]