mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
11 lines
260 B
Docker
11 lines
260 B
Docker
FROM alpine:edge
|
|
|
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
|
&& apk add --no-cache radicale@testing py-dulwich@testing
|
|
|
|
COPY radicale.conf /radicale.conf
|
|
|
|
EXPOSE 5232/tcp
|
|
|
|
CMD radicale -f -S -C /radicale.conf
|