7 lines
195 B
Docker
7 lines
195 B
Docker
FROM debian:sid-slim
|
|
RUN apt update && apt install -y cron clamav && apt purge
|
|
RUN freshclam
|
|
COPY ./clamav /etc/cron.d/clamav
|
|
RUN chmod 644 /etc/cron.d/clamav
|
|
ENTRYPOINT ["/usr/sbin/cron", "-f"]
|