mailcow/data/Dockerfiles/clamd/Dockerfile

27 lines
818 B
Docker
Raw Normal View History

FROM alpine:3.6
2017-02-21 22:26:20 +01:00
2017-05-29 21:50:43 +02:00
LABEL maintainer "André Peters <andre.peters@servercow.de>"
2017-02-21 22:26:20 +01:00
# Add scripts
COPY dl_files.sh bootstrap.sh ./
2017-02-21 22:26:20 +01:00
2017-05-29 21:50:43 +02:00
# Installation
RUN apk add --update \
2017-05-29 21:50:43 +02:00
&& apk add --no-cache clamav clamav-libunrar curl bash \
&& chmod +x /dl_files.sh \
&& set -ex; /bin/bash /dl_files.sh \
&& mkdir /run/clamav \
&& chown clamav:clamav /run/clamav \
&& chmod 750 /run/clamav \
&& sed -i '/Foreground yes/s/^#//g' /etc/clamav/clamd.conf \
&& sed -i '/TCPSocket 3310/s/^#//g' /etc/clamav/clamd.conf \
&& sed -i 's/#PhishingSignatures yes/PhishingSignatures no/g' /etc/clamav/clamd.conf \
&& sed -i 's/#PhishingScanURLs yes/PhishingScanURLs no/g' /etc/clamav/clamd.conf \
2017-05-29 21:50:43 +02:00
&& sed -i '/Foreground yes/s/^#//g' /etc/clamav/freshclam.conf
2017-02-21 22:26:20 +01:00
# Port provision
2017-02-21 22:26:20 +01:00
EXPOSE 3310
# AV daemon bootstrapping
2017-02-21 22:26:20 +01:00
CMD ["/bootstrap.sh"]