1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2024-12-16 10:59:39 +02:00
mailcow-dockerized/data/Dockerfiles/rspamd/Dockerfile

30 lines
885 B
Docker
Raw Normal View History

FROM ubuntu:bionic
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
2016-12-09 21:39:02 +02:00
2017-05-17 07:46:27 +02:00
ARG DEBIAN_FRONTEND=noninteractive
ENV LC_ALL C
2016-12-11 15:13:17 +02:00
2017-06-20 20:06:24 +02:00
RUN apt-get update && apt-get install -y \
2018-06-26 07:49:14 +02:00
tzdata \
2017-06-20 20:06:24 +02:00
ca-certificates \
gnupg2 \
apt-transport-https \
&& apt-key adv --fetch-keys https://rspamd.com/apt/gpg.key \
2019-03-04 14:59:31 +02:00
&& echo "deb https://rspamd.com/apt-stable/ bionic main" > /etc/apt/sources.list.d/rspamd.list \
2017-06-20 20:06:24 +02:00
&& apt-get update && apt-get install -y rspamd \
2017-06-12 23:48:42 +02:00
&& rm -rf /var/lib/apt/lists/* \
&& apt-get autoremove --purge \
&& apt-get clean \
&& mkdir -p /run/rspamd \
&& chown _rspamd:_rspamd /run/rspamd
2017-02-28 11:01:04 +02:00
COPY settings.conf /etc/rspamd/settings.conf
2017-06-22 17:12:13 +02:00
COPY docker-entrypoint.sh /docker-entrypoint.sh
2019-03-03 23:54:47 +02:00
COPY metadata_exporter.lua /usr/share/rspamd/lua/metadata_exporter.lua
2017-03-03 16:46:43 +02:00
2017-06-22 17:12:13 +02:00
ENTRYPOINT ["/docker-entrypoint.sh"]
2016-12-09 21:39:02 +02:00
2018-11-12 10:52:34 +02:00
STOPSIGNAL SIGTERM
2017-10-15 09:31:19 +02:00
CMD ["/usr/bin/rspamd", "-f", "-u", "_rspamd", "-g", "_rspamd"]