Files
exim-forwarder/Dockerfile
Wolfgang Hottgenroth 68ba7d1d9e
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fix
2025-10-23 19:50:27 +02:00

17 lines
265 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
RUN chmod 644 /etc/exim/exim.conf
WORKDIR /etc/exim
EXPOSE 25
CMD [ "/usr/sbin/exim", "-bd", "-q15m", "-v" ]