Base on stretch

master
andryyy 2017-06-20 20:06:24 +02:00
parent ca917673bd
commit 0e501acd7d
1 changed files with 7 additions and 6 deletions

View File

@ -1,14 +1,15 @@
FROM debian:jessie-slim FROM debian:stretch-slim
LABEL maintainer "Andre Peters <andre.peters@servercow.de>" LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
ENV LC_ALL C ENV LC_ALL C
RUN apt-key adv --fetch-keys http://rspamd.com/apt-stable/gpg.key \ RUN apt-get update && apt-get install -y \
&& echo "deb http://rspamd.com/apt-stable/ jessie main" > /etc/apt/sources.list.d/rspamd.list \ ca-certificates \
&& apt-get update && apt-get install -y \ gnupg2 \
ca-certificates \ && apt-key adv --fetch-keys http://rspamd.com/apt-stable/gpg.key \
rspamd \ && echo "deb http://rspamd.com/apt-stable/ stretch main" > /etc/apt/sources.list.d/rspamd.list \
&& apt-get update && apt-get install -y rspamd \
&& rm -rf /var/lib/apt/lists/* \ && rm -rf /var/lib/apt/lists/* \
&& echo '.include $LOCAL_CONFDIR/local.d/rspamd.conf.local' > /etc/rspamd/rspamd.conf.local \ && echo '.include $LOCAL_CONFDIR/local.d/rspamd.conf.local' > /etc/rspamd/rspamd.conf.local \
&& apt-get autoremove --purge \ && apt-get autoremove --purge \