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", "--storage-filesystem-folder=./collections"] |