2022-03-30 09:08:28 +00:00
|
|
|
ARG DISTRO=alpine:3.14.5
|
2019-08-21 12:24:30 -04:00
|
|
|
FROM $DISTRO
|
2021-11-17 20:00:04 +00:00
|
|
|
ARG VERSION
|
2021-11-04 14:22:12 +01:00
|
|
|
|
|
|
|
ENV TZ Etc/UTC
|
|
|
|
|
2021-11-17 20:00:04 +00:00
|
|
|
LABEL version=$VERSION
|
|
|
|
|
2018-10-31 19:17:23 +02:00
|
|
|
# python3 shared with most images
|
|
|
|
RUN apk add --no-cache \
|
2021-11-02 11:19:42 +01:00
|
|
|
python3 py3-pip bash tzdata \
|
2018-10-31 19:17:23 +02:00
|
|
|
&& pip3 install --upgrade pip
|
|
|
|
# Image specific layers under this line
|
2017-04-21 14:54:53 +03: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 18:01:59 +03: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 18:01:59 +03:00
|
|
|
CMD /start.py
|
2018-10-16 22:20:16 +02:00
|
|
|
|
2018-12-08 23:47:37 +02:00
|
|
|
HEALTHCHECK --start-period=350s CMD /health.sh
|
2021-11-18 17:21:56 +00:00
|
|
|
RUN echo $VERSION >> /version
|