Dockerfile 162 B

12345678
  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. VOLUME /etc/ssl/dovecot
  5. CMD ["dovecot", "-F"]