2018-10-31 19:17:23 +02:00
|
|
|
FROM alpine:3.8
|
|
|
|
# python3 shared with most images
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
python3 py3-pip \
|
|
|
|
&& pip3 install --upgrade pip
|
|
|
|
# Image specific layers under this line
|
2017-04-21 13:54:53 +02:00
|
|
|
RUN apk add --no-cache clamav rsyslog wget clamav-libunrar
|
2016-05-29 15:54:02 +02:00
|
|
|
|
|
|
|
COPY conf /etc/clamav
|
2018-10-22 17:01:59 +02:00
|
|
|
COPY start.py /start.py
|
2018-10-16 22:30:15 +02:00
|
|
|
COPY health.sh /health.sh
|
2016-05-29 15:54:02 +02:00
|
|
|
|
2018-04-21 14:46:01 +02:00
|
|
|
EXPOSE 3310/tcp
|
2018-09-28 17:12:50 +02:00
|
|
|
VOLUME ["/data"]
|
2018-04-21 14:46:01 +02:00
|
|
|
|
2018-10-22 17:01:59 +02:00
|
|
|
CMD /start.py
|
2018-10-16 22:20:16 +02:00
|
|
|
|
2018-10-16 22:30:15 +02:00
|
|
|
HEALTHCHECK CMD /health.sh
|