15 lines
292 B
Docker
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"] |