This commit is contained in:
2026-02-19 11:59:04 +01:00
commit 148efd96a5
2 changed files with 250 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM alpine:3.22.2
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
LABEL ImageName=""
RUN \
apk add --no-cache exim
COPY exim.conf /etc/exim
RUN chmod 644 /etc/exim/exim.conf
WORKDIR /etc/exim
EXPOSE 25
CMD [ "/usr/sbin/exim", "-bdf", "-q15m", "-v" ]