Files
mailcow-dockerized/data/Dockerfiles/clamd/Dockerfile
2023-08-04 11:36:48 +02:00

9 lines
190 B
Docker

FROM alpine:3.17
LABEL maintainer "The Infrastructure Company <info@servercow.de>"
RUN apk update && apk add clamav tini bash
COPY clamd.sh ./
CMD ["/sbin/tini", "-g", "--", "/clamd.sh"]