You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
322 B
Docker
14 lines
322 B
Docker
FROM alpine:3.8
|
|
# python3 shared with most images
|
|
RUN apk add --no-cache \
|
|
python3 py3-pip bash \
|
|
&& 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"]
|