mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
10 lines
243 B
Docker
10 lines
243 B
Docker
|
FROM alpine:edge
|
||
|
|
||
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
||
|
&& apk add --update \
|
||
|
rspamd@testing rsyslog \
|
||
|
&& rm -rf /var/cache/apk/*
|
||
|
|
||
|
RUN mkdir /run/rspamd
|
||
|
|
||
|
CMD ["rspamd", "-f", "-i"]
|