Browse Source

Init container first

andryyy 8 years ago
parent
commit
83e02cbe4a
1 changed files with 3 additions and 1 deletions
  1. 3 1
      data/Dockerfiles/rspamd/Dockerfile

+ 3 - 1
data/Dockerfiles/rspamd/Dockerfile

@@ -12,7 +12,7 @@ RUN dpkg-divert --local --rename --add /sbin/initctl \
 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 \
-    && apt-get -y install rspamd ca-certificates python-pip
+    && apt-get -y install rspamd ca-certificates python-pip coreutils
 
 RUN echo '.include $LOCAL_CONFDIR/local.d/rspamd.conf.local' > /etc/rspamd/rspamd.conf.local
 
@@ -21,6 +21,8 @@ ADD antivirus.conf /etc/rspamd/modules.d/antivirus.conf
 
 RUN pip install -U oletools
 
+RUN timeout 30 /usr/bin/rspamd -f -u _rspamd -g _rspamd; exit 0
+
 CMD ["/usr/bin/rspamd","-f", "-u", "_rspamd", "-g", "_rspamd"]
 
 RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*