blob: f35efcf6455da2ccc1ac568e0648841be500ae99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
postfix \
opendkim \
opendkim-tools \
rsyslog \
&& rm -rf /var/lib/apt/lists/*
COPY postfix/main.cf /etc/postfix/main.cf
COPY opendkim/opendkim.conf /etc/opendkim.conf
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 25
ENTRYPOINT ["/entrypoint.sh"]
|