1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:36 +02:00
dockerfiles/clamav/Dockerfile
2017-05-08 07:05:07 +08:00

17 lines
240 B
Docker

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