123456789101112131415161718192021 |
- FROM clamav/clamav:0.105.1_base
- LABEL maintainer "André Peters <andre.peters@servercow.de>"
- RUN apk upgrade --no-cache \
- && apk add --update --no-cache \
- rsync \
- bind-tools \
- bash
- # init
- COPY clamd.sh /clamd.sh
- RUN chmod +x /sbin/tini
- # healthcheck
- COPY healthcheck.sh /healthcheck.sh
- RUN chmod +x /healthcheck.sh
- HEALTHCHECK --start-period=6m CMD "/healthcheck.sh"
- ENTRYPOINT []
- CMD ["/sbin/tini", "-g", "--", "/clamd.sh"]
|