mailcow/data/Dockerfiles/clamd/Dockerfile
2022-05-08 18:33:29 +02:00

15 lines
292 B
Docker

FROM clamav/clamav:0.105.0_base
LABEL maintainer "André Peters <andre.peters@servercow.de>"
RUN apk upgrade --no-cache \
&& apk add --update --no-cache \
rsync \
bind-tools \
bash
COPY clamd.sh ./
RUN chmod +x /sbin/tini
ENTRYPOINT []
CMD ["/sbin/tini", "-g", "--", "/clamd.sh"]