This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/app/build/postfix/Dockerfile
2020-09-12 20:17:07 +02:00

12 lines
226 B
Docker

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"]