mirror of
https://github.com/Mailu/Mailu.git
synced 2025-03-03 14:52:36 +02:00
12 lines
177 B
Docker
12 lines
177 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
|
|
|
|
EXPOSE 3310/tcp
|
|
VOLUME ["/data"]
|
|
|
|
CMD /start.py
|