2016-04-24 16:27:17 +02:00
|
|
|
FROM alpine:edge
|
2016-02-24 07:44:49 +01:00
|
|
|
|
|
|
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
|
|
|
&& apk add --update \
|
2016-12-11 19:15:09 +01:00
|
|
|
dovecot dovecot-sqlite dovecot-pigeonhole-plugin dovecot-pigeonhole-plugin-extdata \
|
2016-06-19 21:57:02 +02:00
|
|
|
rspamd-client@testing \
|
2016-05-29 15:57:03 +02:00
|
|
|
bash \
|
2016-06-19 21:57:02 +02:00
|
|
|
&& rm -rf /var/cache/apk/*
|
2016-02-24 07:44:49 +01:00
|
|
|
|
|
|
|
COPY conf /etc/dovecot
|
|
|
|
COPY sieve /var/lib/dovecot
|
|
|
|
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
|
|
|
|
CMD ["/start.sh"]
|