mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
14 lines
175 B
Docker
14 lines
175 B
Docker
FROM alpine
|
|
|
|
RUN apk add --update \
|
|
clamav \
|
|
rsyslog \
|
|
wget \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
|
|
COPY conf /etc/clamav
|
|
COPY start.sh /start.sh
|
|
|
|
CMD ["/start.sh"]
|