6 lines
166 B
Docker
6 lines
166 B
Docker
FROM clamav
|
|
RUN apt update && apt install -y cron && apt clean
|
|
COPY "./docker-entrypoint.sh" "/init"
|
|
COPY "./clamav-cron" "/etc/cron.d/clamav"
|
|
RUN service cron start
|