docker-images/images/imap-download/Dockerfile

28 lines
618 B
Docker
Raw Normal View History

2021-05-25 21:19:37 +00:00
ARG REPO_LOCATION
# ARG BASE_VERSION
FROM ${REPO_LOCATION}minideb
RUN install_packages ca-certificates fetchmail procmail inotify-tools mpack
RUN mkdir /srv/home \
&& ln -s /mnt/fetchmailrc /srv/home/.fetchmailrc \
&& mkdir /tmp/maildir \
&& useradd --system --home=/srv/home --uid=10000 --gid=10000 fetchmail
2021-05-25 21:19:37 +00:00
ENV HOME /srv/home
COPY ./procmail.conf /srv/procmail.conf
COPY ./run.sh /srv/run.sh
VOLUME /mnt/fetchmailrc
VOLUME /mnt/output
# Example fetchmailrc file:
#
# poll starbeamrainbowlabs.com protocol IMAP
# user "user@example.com" with pass "PASSWORD_HERE"
# idle
# ssl
2021-05-25 21:19:37 +00:00
ENTRYPOINT [ "/srv/run.sh" ]