mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
10 lines
169 B
Docker
10 lines
169 B
Docker
FROM python:3-alpine
|
|
|
|
RUN apk add --no-cache fetchmail ca-certificates \
|
|
&& pip install requests
|
|
|
|
COPY fetchmail.py /fetchmail.py
|
|
USER fetchmail
|
|
|
|
CMD ["/fetchmail.py"]
|