mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-08 22:57:55 +08:00
6a0432177a
Bumps clamav/clamav from 1.3.0-40 to 1.3.0-41. --- updated-dependencies: - dependency-name: clamav/clamav dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
19 lines
650 B
Docker
19 lines
650 B
Docker
# syntax=docker/dockerfile:latest
|
|
# Probably from this file: https://github.com/Cisco-Talos/clamav-docker/blob/main/clamav/1.1/alpine/Dockerfile
|
|
FROM clamav/clamav:1.3.0-41
|
|
|
|
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"
|