1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/optional/fetchmail/Dockerfile
2022-10-12 16:32:27 +02:00

22 lines
389 B
Docker

# syntax=docker/dockerfile-upstream:1.4.3
# fetchmail image
FROM base
ARG VERSION=local
LABEL version=$VERSION
RUN set -euxo pipefail \
; apk add --no-cache fetchmail openssl \
; mkdir -p /data
COPY fetchmail.py /
RUN echo $VERSION >/version
HEALTHCHECK --start-period=350s CMD ["/bin/sh", "-c", "ps ax | grep [/]fetchmail.py"]
VOLUME ["/var/lib/rspamd"]
CMD ["/fetchmail.py"]