all repos — infra @ 557c7497404bb7c095aa80502b82e65b78ccaf4f

infrastructure manifests and setup notes

apps/radicale/Dockerfile (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
FROM alpine

RUN apk add --no-cache \
    python3 \
    py3-pip

RUN python3 -m pip install --upgrade radicale
RUN addgroup -S radicale && adduser -S radicale -G radicale

USER radicale
WORKDIR /home/radicale
EXPOSE 5232

CMD ["python3", "-m", "radicale", "--server-hosts", "0.0.0.0:5232", "--storage-filesystem-folder=./collections"]