From 79a1c6a16638b8459d831fd3054e503f99952fa5 Mon Sep 17 00:00:00 2001 From: binor Date: Thu, 2 Mar 2017 09:06:31 +0100 Subject: [PATCH] Add dulwich for git support Radicale supports automatic versioning of calendar event changes if a git repository was initialized in the data directory. For this to work, Radicale needs dulwich as an interface to the git repository. http://radicale.org/user_documentation/#idgit-support --- radicale/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/Dockerfile b/radicale/Dockerfile index b42548e6..dce888b5 100644 --- a/radicale/Dockerfile +++ b/radicale/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:edge RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \ - && apk add --no-cache radicale@testing + && apk add --no-cache radicale@testing py-dulwich@testing COPY radicale.conf /radicale.conf