mailcow/data/Dockerfiles/clamd/Dockerfile

48 lines
1.4 KiB
Docker
Raw Normal View History

FROM alpine:3.8
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
# Add scripts
COPY dl_files.sh bootstrap.sh ./
2017-02-22 05:26:20 +08:00
2017-05-30 03:50:43 +08:00
# Installation
2018-10-14 06:18:21 +08:00
ENV CLAMAV 0.100.2
RUN apk add --no-cache --virtual build-dependencies alpine-sdk ncurses-dev zlib-dev bzip2-dev pcre-dev linux-headers fts-dev libxml2-dev libressl-dev \
&& apk add --no-cache curl bash tini libxml2 libbz2 pcre fts libressl tzdata \
&& wget -O - https://www.clamav.net/downloads/production/clamav-${CLAMAV}.tar.gz | tar xfvz - \
&& cd clamav-${CLAMAV} \
&& LIBS=-lfts ./configure \
--prefix=/usr \
--libdir=/usr/lib \
--sysconfdir=/etc/clamav \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--without-iconv \
--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} \
&& apk del build-dependencies \
&& addgroup -S clamav \
&& adduser -S -D -h /var/lib/clamav -s /sbin/nologin -G clamav -g clamav clamav \
&& adduser clamav tty \
&& mkdir -p /run/clamav \
&& chown clamav:clamav /run/clamav \
&& chmod +x /dl_files.sh \
&& set -ex; /bin/bash /dl_files.sh \
&& chmod 750 /run/clamav
2017-02-22 05:26:20 +08:00
# Port provision
2017-02-22 05:26:20 +08:00
EXPOSE 3310
# AV daemon bootstrapping
CMD ["/sbin/tini", "-g", "--", "/bootstrap.sh"]