1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-20 03:29:50 +02:00
Mailu/fetchmail/Dockerfile

13 lines
181 B
Docker
Raw Normal View History

2016-04-28 20:07:38 +02:00
FROM python:alpine
RUN apk add --update \
fetchmail \
2016-06-26 13:54:16 +02:00
ca-certificates \
2016-04-28 20:07:38 +02:00
&& rm -rf /var/cache/apk/*
COPY fetchmail.py /fetchmail.py
2016-10-26 13:38:19 +02:00
USER fetchmail
2016-04-28 20:07:38 +02:00
CMD ["/fetchmail.py"]