Initial Release

This commit is contained in:
Deon George
2017-06-02 23:48:48 +10:00
commit 74ef5e19b8
4 changed files with 317 additions and 0 deletions

22
Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
# NAME leenooks/clamav
# VERSION latest
FROM registry.leenooks.net/leenooks/base:7.E
# EPEL & Leenooks packages
RUN yum -y install \
clamav-milter \
clamav-server \
clamav-update \
&& yum clean all
EXPOSE 3310 3311
COPY init /sbin/
COPY freshclam.conf /etc
LABEL cron.daily root:/usr/share/clamav/freshclam-sleep
# Starting
ENTRYPOINT [ "/sbin/init" ]
CMD [ "start" ]