infrastructure/app_build/postfix/Dockerfile

12 lines
226 B
Docker
Raw Normal View History

2019-06-01 14:02:49 +00:00
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"]