1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-20 04:59:25 +02:00
dockerfiles/clamav/Dockerfile

17 lines
241 B
Docker
Raw Normal View History

2016-04-08 10:58:44 +08:00
#
# Dockerfile for clamav
#
FROM alpine
2016-05-01 09:06:20 +08:00
MAINTAINER kev <noreply@easypi.info>
2016-04-08 10:58:44 +08:00
RUN set -xe \
2016-07-21 07:47:40 +08:00
&& apk add --no-cache clamav clamav-libunrar \
2016-04-08 10:58:44 +08:00
&& cd /etc/clamav/ \
2016-07-21 07:47:40 +08:00
&& freshclam
2016-04-08 10:58:44 +08:00
WORKDIR /data
ENTRYPOINT ["clamscan"]
CMD ["--help"]