mailcow/data/Dockerfiles/rspamd/Dockerfile

29 lines
823 B
Docker
Raw Normal View History

FROM ubuntu:bionic
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
2016-12-10 03:39:02 +08:00
2017-05-17 13:46:27 +08:00
ARG DEBIAN_FRONTEND=noninteractive
ENV LC_ALL C
2016-12-11 21:13:17 +08:00
2017-06-21 02:06:24 +08:00
RUN apt-get update && apt-get install -y \
2018-06-26 13:49:14 +08:00
tzdata \
2017-06-21 02:06:24 +08:00
ca-certificates \
gnupg2 \
apt-transport-https \
&& apt-key adv --fetch-keys https://rspamd.com/apt/gpg.key \
&& echo "deb https://rspamd.com/apt-stable/ bionic main" > /etc/apt/sources.list.d/rspamd.list \
&& apt-get update && apt-get install -y rspamd dnsutils \
2017-06-13 05:48:42 +08: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 17:01:04 +08:00
COPY settings.conf /etc/rspamd/settings.conf
2017-06-22 23:12:13 +08:00
COPY docker-entrypoint.sh /docker-entrypoint.sh
2017-03-03 22:46:43 +08:00
2017-06-22 23:12:13 +08:00
ENTRYPOINT ["/docker-entrypoint.sh"]
2016-12-10 03:39:02 +08:00
2018-11-12 16:52:34 +08:00
STOPSIGNAL SIGTERM
2017-10-15 15:31:19 +08:00
CMD ["/usr/bin/rspamd", "-f", "-u", "_rspamd", "-g", "_rspamd"]