Dockerfile 216 B

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