docker/mail/postfix/Dockerfile
2024-02-08 11:31:10 +01:00

8 lines
262 B
Docker

FROM docker.io/debian:12-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
postfix \
&& rm -rf /var/lib/apt/lists/*
COPY main.cf /etc/postfix/
EXPOSE 25 587