mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-16 10:59:53 +02:00
11 lines
259 B
Docker
11 lines
259 B
Docker
FROM alpine:edge
|
|
|
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
|
&& apk add --update \
|
|
radicale@testing \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY radicale.conf /radicale.conf
|
|
|
|
CMD radicale -f -S -C /radicale.conf
|