mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
12 lines
172 B
Docker
12 lines
172 B
Docker
FROM alpine:3.8
|
|
|
|
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
|