aboutsummaryrefslogtreecommitdiff
path: root/docker/postfix/Dockerfile
blob: 9e4c067fad5b01bc46fdaf998cfdda63e8931433 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
FROM amd64/debian:buster

RUN apt-get update && \
    apt-get install -y \
      postfix \
      postfix-ldap

COPY entrypoint.sh /usr/local/bin/entrypoint

ENTRYPOINT ["/usr/local/bin/entrypoint"]
CMD ["postfix", "start-fg"]