2016-12-23 10:27:48 +01:00
|
|
|
FROM ubuntu:xenial
|
2016-12-09 20:39:02 +01:00
|
|
|
MAINTAINER Andre Peters <andre.peters@debinux.de>
|
|
|
|
|
2016-12-11 14:13:17 +01:00
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
2016-12-23 10:27:48 +01:00
|
|
|
ENV LC_ALL C
|
2016-12-11 14:13:17 +01:00
|
|
|
|
2016-12-23 10:27:48 +01:00
|
|
|
RUN dpkg-divert --local --rename --add /sbin/initctl \
|
|
|
|
&& ln -sf /bin/true /sbin/initctl \
|
|
|
|
&& dpkg-divert --local --rename --add /usr/bin/ischroot \
|
|
|
|
&& ln -sf /bin/true /usr/bin/ischroot
|
|
|
|
|
|
|
|
RUN apt-key adv --fetch-keys http://rspamd.com/apt-stable/gpg.key \
|
|
|
|
&& echo "deb http://rspamd.com/apt-stable/ xenial main" > /etc/apt/sources.list.d/rspamd.list \
|
|
|
|
&& apt-get update \
|
2017-03-04 00:06:58 +01:00
|
|
|
&& apt-get -y install rspamd ca-certificates python-pip
|
2016-12-09 20:39:02 +01:00
|
|
|
|
2016-12-10 21:49:41 +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
|
|
|
|
|
|
|
ADD settings.conf /etc/rspamd/modules.d/settings.conf
|
|
|
|
ADD antivirus.conf /etc/rspamd/modules.d/antivirus.conf
|
2016-12-10 21:49:41 +01:00
|
|
|
|
2017-02-18 20:29:15 +01:00
|
|
|
RUN pip install -U oletools
|
2017-03-03 15:46:43 +01:00
|
|
|
|
2017-03-04 10:41:36 +01:00
|
|
|
# Give Nginx/PHP time to restart
|
|
|
|
CMD /bin/sleep 30; /usr/bin/rspamd -f -u _rspamd -g _rspamd
|
2016-12-09 20:39:02 +01:00
|
|
|
|
2016-12-23 10:27:48 +01:00
|
|
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
|
2016-12-09 20:39:02 +01:00
|
|
|
USER _rspamd
|
|
|
|
|
|
|
|
EXPOSE 11333 11334
|