From 5319752ee363049c643021b978cb5cb3c8ff251c Mon Sep 17 00:00:00 2001 From: Cedric Staniewski Date: Wed, 21 Jan 2026 00:59:33 +0100 Subject: [PATCH] Add `git` to the docker image This is required to version collections with git as described in the tutorial at https://radicale.org/v3.html#versioning-collections-with-git . --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1fe5f380..165247ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ WORKDIR /app RUN addgroup -g 1000 radicale \ && adduser radicale --home /var/lib/radicale --system --uid 1000 --disabled-password -G radicale \ - && apk add --no-cache ca-certificates openssl curl + && apk add --no-cache ca-certificates openssl curl git COPY --chown=radicale:radicale --from=builder /app/venv /app