mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
17 lines
240 B
Docker
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"]
|