1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-18 03:21:36 +02:00
Mailu/services/rspamd/Dockerfile

19 lines
422 B
Docker
Raw Normal View History

FROM alpine:3.8
RUN apk add --no-cache python py-jinja2 rspamd rspamd-controller rspamd-proxy rspamd-fuzzy ca-certificates py-pip curl\
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
EXPOSE 11332/tcp 11334/tcp 11335/tcp
VOLUME ["/var/lib/rspamd"]
CMD /start.py
2018-10-16 21:38:12 +02:00
HEALTHCHECK --start-period=350s CMD curl -f -L http://localhost:11334/ || exit 1