mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
23 lines
447 B
Docker
23 lines
447 B
Docker
ARG DISTRO=alpine:3.14.5
|
|
FROM $DISTRO
|
|
ARG VERSION
|
|
|
|
ENV TZ Etc/UTC
|
|
|
|
LABEL version=$VERSION
|
|
|
|
# python3 shared with most images
|
|
RUN apk add --no-cache \
|
|
python3 py3-pip bash tzdata \
|
|
&& pip3 install --upgrade pip
|
|
|
|
# Image specific layers under this line
|
|
RUN apk add --no-cache fetchmail ca-certificates openssl \
|
|
&& pip3 install requests
|
|
|
|
RUN mkdir -p /data
|
|
|
|
COPY fetchmail.py /fetchmail.py
|
|
|
|
CMD ["/fetchmail.py"]
|
|
RUN echo $VERSION >> /version |