12 lines
177 B
Docker
12 lines
177 B
Docker
FROM alpine:edge
|
|
|
|
RUN apk add --no-cache clamav rsyslog wget clamav-libunrar
|
|
|
|
COPY conf /etc/clamav
|
|
COPY start.sh /start.sh
|
|
|
|
EXPOSE 3310/tcp
|
|
VOLUME ["/data"]
|
|
|
|
CMD ["/start.sh"]
|