1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00: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"]