mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-12 10:45:38 +02:00
13 lines
354 B
Docker
13 lines
354 B
Docker
FROM alpine:edge
|
|
|
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
|
&& apk add --no-cache \
|
|
dovecot dovecot-sqlite dovecot-pigeonhole-plugin dovecot-pigeonhole-plugin-extdata \
|
|
rspamd-client@testing python py-jinja2
|
|
|
|
COPY conf /conf
|
|
COPY sieve /var/lib/dovecot
|
|
COPY start.py /start.py
|
|
|
|
CMD /start.py
|