deployment yml

This commit is contained in:
2025-10-23 17:31:25 +02:00
parent 093e32f1af
commit c4ff4efeba
5 changed files with 155 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
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" ]