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