1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/rspamd/Dockerfile

13 lines
302 B
Docker

FROM alpine:edge
# We have to upgrade musl, or rspamd will not work.
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories \
&& apk add --no-cache rspamd rsyslog ca-certificates
RUN mkdir /run/rspamd
COPY conf/ /etc/rspamd
COPY start.sh /start.sh
CMD ["/start.sh"]