nixcfg/cluster/prod/app/email/build/postfix/Dockerfile

14 lines
248 B
Docker
Raw Normal View History

2023-12-25 13:00:36 +00:00
FROM amd64/debian:trixie
2022-08-25 02:39:44 +00:00
ARG VERSION
RUN apt-get update && \
apt-get install -y \
postfix=$VERSION \
postfix-ldap
COPY entrypoint.sh /usr/local/bin/entrypoint
ENTRYPOINT ["/usr/local/bin/entrypoint"]
CMD ["postfix", "start-fg"]