1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 09:18:43 +00:00
dockerfiles/clamav/Dockerfile
2016-07-21 07:47:40 +08:00

17 lines
241 B
Docker

#
# Dockerfile for clamav
#
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN set -xe \
&& apk add --no-cache clamav clamav-libunrar \
&& cd /etc/clamav/ \
&& freshclam
WORKDIR /data
ENTRYPOINT ["clamscan"]
CMD ["--help"]