1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-04 10:34:49 +02: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"]