added clamav dockerfile
This commit is contained in:
15
dockerfiles/tools/clamav.dockerfile
Normal file
15
dockerfiles/tools/clamav.dockerfile
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
FROM alpine
|
||||||
|
ARG PUID=1001
|
||||||
|
ARG PGID=1001
|
||||||
|
|
||||||
|
MAINTAINER tabledevil
|
||||||
|
|
||||||
|
RUN apk add -u clamav
|
||||||
|
RUN apk add -u freshclam
|
||||||
|
RUN freshclam
|
||||||
|
|
||||||
|
|
||||||
|
RUN addgroup -g ${PGID} user && \
|
||||||
|
adduser -D -u ${PUID} -G user user
|
||||||
|
|
||||||
|
USER user
|
||||||
Reference in New Issue
Block a user