mirror of
https://github.com/Mailu/Mailu.git
synced 2025-01-30 04:30:49 +02:00
12 lines
146 B
Docker
12 lines
146 B
Docker
FROM alpine
|
|
|
|
RUN apk add --update \
|
|
clamav \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY conf /etc/clamav
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
CMD ["/start.sh"]
|