all repos — infra @ 6e1b4251f2a8de8412faa19cf9cadd97d80b6d18

infrastructure manifests and setup notes

apps/radicale/Dockerfile (view raw)

 1FROM alpine
 2
 3RUN apk add --no-cache \
 4    python3 \
 5    py3-pip
 6
 7RUN python3 -m pip install --upgrade radicale
 8RUN addgroup -S radicale && adduser -S radicale -G radicale
 9
10USER radicale
11WORKDIR /home/radicale
12EXPOSE 5232
13
14CMD ["python3", "-m", "radicale", "--storage-filesystem-folder=./collections"]