Add a basic clamav server

This commit is contained in:
Pierre Jaury
2016-03-02 21:26:17 +01:00
parent c55c1202d6
commit e9ae250d7d
4 changed files with 91 additions and 0 deletions

11
clamav/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine
RUN apk add --update \
clamav \
&& rm -rf /var/cache/apk/*
COPY conf /etc/clamav
COPY start.sh /start.sh
CMD ["/start.sh"]