Update clamav properly and initialize the database, related to #18

This commit is contained in:
Pierre Jaury
2016-06-25 12:28:01 +02:00
parent ddd20df866
commit 77f40de5a9
2 changed files with 12 additions and 2 deletions

View File

@@ -8,6 +8,6 @@ RUN apk add --update \
COPY conf /etc/clamav
COPY start.sh /start.sh
CMD ["/usr/sbin/clamd"]
CMD ["/start.sh"]

10
clamav/start.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
# Bootstrap the database if clamav is running for the first time
[ -f /data/main.cvd ] || freshclam
# Run the update daemon
freshclam -d -c 6
# Run clamav
clamd