Dockerfile 275 B

1234567891011
  1. FROM alpine:3.11
  2. ARG DOVECOT_PACKAGE_VERSION=2.3.9.3-r0
  3. RUN apk add --no-cache \
  4. dovecot-lmtpd=$DOVECOT_PACKAGE_VERSION \
  5. dovecot=$DOVECOT_PACKAGE_VERSION \
  6. && find /etc/ssl/dovecot -type f -print -delete
  7. VOLUME /etc/ssl/dovecot
  8. CMD ["dovecot", "-F"]