1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/clamav/Dockerfile

17 lines
240 B
Docker
Raw Normal View History

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