mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
9 lines
148 B
Plaintext
9 lines
148 B
Plaintext
|
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"]
|