You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
Docker
15 lines
394 B
Docker
FROM debian:jessie
|
|
|
|
RUN export DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
postfix dovecot-imapd dovecot-sqlite \
|
|
dovecot-sieve dovecot-managesieved \
|
|
dovecot-antispam spamassassin clamav \
|
|
supervisor \
|
|
&& apt-get clean
|
|
|
|
ADD config /etc/
|
|
|
|
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/supervisord.conf"]
|