mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-19 20:07:55 +08:00
3fc1487cd9
Co-authored-by: Simon L. <szaimen@e.mail.de> Signed-off-by: Zoey <zoey@z0ey.de>
10 lines
363 B
Docker
10 lines
363 B
Docker
# Probably from this file: https://github.com/Cisco-Talos/clamav-docker/blob/main/clamav/1.1/alpine/Dockerfile
|
|
FROM clamav/clamav:1.1.0-1
|
|
|
|
COPY clamav.conf /tmp/clamav.conf
|
|
|
|
RUN set -ex; \
|
|
apk add --no-cache tzdata; \
|
|
cat /tmp/clamav.conf | tee -a /etc/clamav/clamd.conf; \
|
|
rm /tmp/clamav.conf
|
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|