You've already forked Mailu
mirror of
https://github.com/Mailu/Mailu.git
synced 2025-07-07 00:56:11 +02:00
14 lines
214 B
Docker
14 lines
214 B
Docker
FROM python:alpine
|
|
|
|
RUN apk add --update \
|
|
fetchmail \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY fetchmail.py /fetchmail.py
|
|
|
|
RUN mkdir /var/spool/mail \
|
|
&& chown mail: /var/spool/mail
|
|
USER mail
|
|
|
|
CMD ["/fetchmail.py"]
|