1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/optional/clamav/Dockerfile

14 lines
241 B
Docker
Raw Normal View History

FROM alpine:3.8
2017-04-21 13:54:53 +02:00
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"]
2018-10-16 22:20:16 +02:00
HEALTHCHECK CMD [ "$(echo PING | nc localhost 3310)" = "PONG" ]