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/email/build/postfix/Dockerfile

14 lines
248 B
Docker
Raw Normal View History

2019-06-01 14:02:49 +00:00
FROM amd64/debian:buster
2020-12-22 15:40:36 +00:00
ARG VERSION
2019-06-01 14:02:49 +00:00
RUN apt-get update && \
apt-get install -y \
2020-12-22 15:40:36 +00:00
postfix=$VERSION \
2019-06-01 14:02:49 +00:00
postfix-ldap
COPY entrypoint.sh /usr/local/bin/entrypoint
ENTRYPOINT ["/usr/local/bin/entrypoint"]
CMD ["postfix", "start-fg"]