Files
exim-forwarder/Dockerfile
2025-10-23 17:31:25 +02:00

18 lines
233 B
Docker

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
WORKDIR /etc/exim
EXPOSE 25
CMD [ "/usr/sbin/exim", "-bd", "-q15m", "-v" ]