mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
14 lines
317 B
Docker
14 lines
317 B
Docker
FROM alpine:3.8
|
|
# python3 shared with most images
|
|
RUN apk add --no-cache \
|
|
python3 py3-pip \
|
|
&& pip3 install --upgrade pip
|
|
# Image specific layers under this line
|
|
RUN apk add --no-cache fetchmail ca-certificates \
|
|
&& pip3 install requests
|
|
|
|
COPY fetchmail.py /fetchmail.py
|
|
USER fetchmail
|
|
|
|
CMD ["/fetchmail.py"]
|