mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
13 lines
181 B
Docker
13 lines
181 B
Docker
FROM python:alpine
|
|
|
|
RUN apk add --update \
|
|
fetchmail \
|
|
ca-certificates \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY fetchmail.py /fetchmail.py
|
|
|
|
USER fetchmail
|
|
|
|
CMD ["/fetchmail.py"]
|