mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-12 10:45:38 +02:00
15 lines
230 B
Docker
15 lines
230 B
Docker
FROM alpine:3.8
|
|
|
|
RUN apk add --no-cache clamav rsyslog wget clamav-libunrar
|
|
|
|
COPY conf /etc/clamav
|
|
COPY start.sh /start.sh
|
|
COPY health.sh /health.sh
|
|
|
|
EXPOSE 3310/tcp
|
|
VOLUME ["/data"]
|
|
|
|
CMD ["/start.sh"]
|
|
|
|
HEALTHCHECK CMD /health.sh
|