1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-03-05 14:55:20 +02:00
Mailu/optional/clamav/Dockerfile

26 lines
514 B
Docker
Raw Normal View History

ARG DISTRO=alpine:3.14.5
FROM $DISTRO
ARG VERSION
2021-11-04 14:22:12 +01:00
ENV TZ Etc/UTC
LABEL version=$VERSION
# python3 shared with most images
RUN apk add --no-cache \
2021-11-02 11:19:42 +01:00
python3 py3-pip bash tzdata \
&& 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
COPY conf /etc/clamav
2018-10-22 18:01:59 +03:00
COPY start.py /start.py
COPY health.sh /health.sh
EXPOSE 3310/tcp
VOLUME ["/data"]
2018-10-22 18:01:59 +03:00
CMD /start.py
2018-10-16 22:20:16 +02:00
HEALTHCHECK --start-period=350s CMD /health.sh
RUN echo $VERSION >> /version