Dockerfile 252 B

12345678910111213
  1. FROM alpine
  2. RUN apk update && apk add postfix dovecot dovecot-pop3d opendkim s6
  3. # Expose ports
  4. EXPOSE 25 110 143 587 993 995
  5. # Fixes problem with s6 (s6 claims it's a docker bug)
  6. VOLUME ["/run"]
  7. # Run start script
  8. ENTRYPOINT /usr/bin/entrypoint.sh