docspell/tools/exim/exim.dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
148 B
Plaintext
Raw Permalink Normal View History

FROM alpine:latest
RUN apk add --no-cache exim curl
USER exim
COPY ./exim.conf /etc/exim/
EXPOSE 25
ENTRYPOINT ["exim"]
CMD ["-bdf", "-v", "-q1m"]