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

20 lines
423 B
Docker
Raw Normal View History

FROM alpine:3.8
2018-10-06 23:32:05 +02:00
RUN apk add --no-cache python py-jinja2 rspamd rspamd-controller rspamd-proxy ca-certificates py-pip \
2018-10-07 00:40:22 +02:00
&& pip install --upgrade pip \
2018-10-06 23:32:05 +02:00
&& pip install tenacity
2016-06-19 21:56:20 +02:00
RUN mkdir /run/rspamd
COPY conf/ /conf
COPY start.py /start.py
2016-06-19 21:56:20 +02:00
# Temporary fix to remove references to rspamd-fuzzy for now
RUN sed -i '/fuzzy/,$d' /etc/rspamd/rspamd.conf
EXPOSE 11332/tcp 11334/tcp
VOLUME ["/var/lib/rspamd"]
CMD /start.py