nixcfg/cluster/prod/app/email/build/postfix/Dockerfile
2022-08-25 04:39:44 +02:00

14 lines
248 B
Docker

FROM amd64/debian:buster
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"]