| 12345678910111213141516171819202122232425 | FROM alpine:3.19LABEL maintainer "The Infrastructure Company GmbH GmbH <info@servercow.de>"RUN apk upgrade --no-cache \  && apk add --update --no-cache \  rsync \  clamav \  bind-tools \  bash \  tini# initCOPY clamd.sh /clamd.shRUN chmod +x /sbin/tini# healthcheckCOPY healthcheck.sh /healthcheck.shCOPY clamdcheck.sh /usr/local/binRUN chmod +x /healthcheck.shRUN chmod +x /usr/local/bin/clamdcheck.shHEALTHCHECK --start-period=6m CMD "/healthcheck.sh"ENTRYPOINT []CMD ["/sbin/tini", "-g", "--", "/clamd.sh"]
 |