mailcow/data/Dockerfiles/rspamd/Dockerfile

25 lines
763 B
Docker
Raw Normal View History

2017-05-17 07:46:27 +02:00
FROM debian:jessie-slim
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
2016-12-09 20:39:02 +01:00
2017-05-17 07:46:27 +02:00
ARG DEBIAN_FRONTEND=noninteractive
ENV LC_ALL C
2016-12-11 14:13:17 +01:00
2017-05-17 07:46:27 +02:00
RUN apt-key adv --fetch-keys http://rspamd.com/apt-stable/gpg.key \
&& echo "deb http://rspamd.com/apt-stable/ jessie main" > /etc/apt/sources.list.d/rspamd.list \
&& apt-get update && apt-get install -y \
ca-certificates \
rspamd \
&& rm -rf /var/lib/apt/lists/*
2016-12-09 20:39:02 +01:00
RUN echo '.include $LOCAL_CONFDIR/local.d/rspamd.conf.local' > /etc/rspamd/rspamd.conf.local
2017-02-28 10:01:04 +01:00
2017-03-07 15:44:37 +01:00
COPY settings.conf /etc/rspamd/modules.d/settings.conf
COPY antivirus.conf /etc/rspamd/modules.d/antivirus.conf
2017-05-08 14:11:30 +02:00
COPY dkim_signing.lua /usr/share/rspamd/lua/dkim_signing.lua
2017-03-03 15:46:43 +01:00
2017-05-17 07:46:27 +02:00
CMD /usr/bin/rspamd -f -u _rspamd -g _rspamd
2016-12-09 20:39:02 +01:00
RUN rm -rf /tmp/* /var/tmp/*
2016-12-09 20:39:02 +01:00
USER _rspamd