mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-06 13:56:45 +08:00
bbda78001d
Bumps clamav/clamav from 1.2.0-1 to 1.2.0-6. --- updated-dependencies: - dependency-name: clamav/clamav dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
614 B
Docker
18 lines
614 B
Docker
# Probably from this file: https://github.com/Cisco-Talos/clamav-docker/blob/main/clamav/1.1/alpine/Dockerfile
|
|
FROM clamav/clamav:1.2.0-6
|
|
|
|
COPY clamav.conf /tmp/clamav.conf
|
|
|
|
RUN set -ex; \
|
|
apk add --no-cache tzdata; \
|
|
cat /tmp/clamav.conf > /etc/clamav/clamd.conf; \
|
|
rm /tmp/clamav.conf; \
|
|
mkdir -p /var/run/clamav /run/lock; \
|
|
chown -R clamav:clamav /var/run/clamav /run/clamav /var/log/clamav /var/lock /run/lock; \
|
|
chmod 777 -R /var/run/clamav /run/clamav /var/log/clamav /var/lock /run/lock /tmp
|
|
|
|
VOLUME /var/lib/clamav
|
|
|
|
USER clamav
|
|
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|