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.
12 lines
328 B
Docker
12 lines
328 B
Docker
9 years ago
|
FROM debian:jessie
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install -y --no-install-recommends \
|
||
|
postfix dovecot-imapd dovecot-sqlite \ # basics
|
||
|
dovecot-sieve dovecot-managesieved \ # filters
|
||
|
dovecot-antispam spamassassin clamav \ # additional utilities
|
||
|
supervisord \ # glue
|
||
|
&& apt-get clean
|
||
|
|
||
|
ADD config /etc/
|