2023-05-03 17:03:04 +02:00
|
|
|
# Probably from this file: https://github.com/Cisco-Talos/clamav-docker/blob/main/clamav/1.1/alpine/Dockerfile
|
2023-05-02 13:01:31 +00:00
|
|
|
FROM clamav/clamav:1.1.0-1
|
2022-03-15 23:46:58 +01:00
|
|
|
|
2023-05-03 16:27:52 +02:00
|
|
|
COPY clamav.conf /tmp/clamav.conf
|
|
|
|
|
|
2023-05-03 17:02:43 +02:00
|
|
|
RUN set -ex; \
|
|
|
|
|
apk add --no-cache tzdata; \
|
|
|
|
|
cat /tmp/clamav.conf | tee -a /etc/clamav/clamd.conf; \
|
|
|
|
|
rm /tmp/clamav.conf
|
2023-06-03 14:56:05 +02:00
|
|
|
|
2023-06-06 12:10:54 +02:00
|
|
|
# USER root is probably used
|
2023-06-03 14:56:05 +02:00
|
|
|
|
2023-01-30 15:33:12 +01:00
|
|
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|