Files
Mailu/fetchmail/Dockerfile
Pierre Jaury 28227da988 Fetchmail needs access to the database, fixes #110
(cherry picked from commit e73b12ba55)
2016-11-13 15:06:13 +01:00

11 lines
165 B
Docker

FROM python:alpine
RUN apk add --update \
fetchmail \
ca-certificates \
&& rm -rf /var/cache/apk/*
COPY fetchmail.py /fetchmail.py
CMD ["/fetchmail.py"]