mailcow/data/Dockerfiles/clamd/Dockerfile

62 lines
1.4 KiB
Docker
Raw Normal View History

2019-11-22 00:52:45 +08:00
FROM debian:buster-slim
2017-02-22 05:26:20 +08:00
2017-05-30 03:50:43 +08:00
LABEL maintainer "André Peters <andre.peters@servercow.de>"
2017-02-22 05:26:20 +08:00
ARG CLAMAV=0.103.2
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
zlib1g-dev \
2019-11-22 00:52:45 +08:00
libcurl4-openssl-dev \
libncurses5-dev \
libzip-dev \
libpcre2-dev \
libxml2-dev \
libssl-dev \
build-essential \
libjson-c-dev \
curl \
bash \
wget \
tzdata \
dnsutils \
rsync \
dos2unix \
netcat \
&& rm -rf /var/lib/apt/lists/* \
&& wget -O - https://www.clamav.net/downloads/production/clamav-${CLAMAV}.tar.gz | tar xfvz - \
&& cd clamav-${CLAMAV} \
&& ./configure \
--prefix=/usr \
--libdir=/usr/lib \
--sysconfdir=/etc/clamav \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--disable-llvm \
--with-user=clamav \
--with-group=clamav \
--with-dbdir=/var/lib/clamav \
--enable-clamdtop \
--enable-bigstack \
--with-pcre \
&& make -j4 \
&& make install \
&& make clean \
&& cd .. && rm -rf clamav-${CLAMAV} \
&& apt-get -y --auto-remove purge build-essential \
&& apt-get -y purge zlib1g-dev \
libncurses5-dev \
libzip-dev \
libpcre2-dev \
libxml2-dev \
libssl-dev \
libjson-c-dev \
&& addgroup --system --gid 700 clamav \
&& adduser --system --no-create-home --home /var/lib/clamav --uid 700 --gid 700 --disabled-login clamav \
&& rm -rf /tmp/* /var/tmp/*
2017-02-22 05:26:20 +08:00
COPY clamd.sh ./
COPY tini /sbin/tini
2017-02-22 05:26:20 +08:00
CMD ["/sbin/tini", "-g", "--", "/clamd.sh"]