| 1234567891011121314151617181920212223242526 | FROM alpine:3.10# storage hooksRUN apk add --no-cache git# py3-passlib & py3-bcrypt required for htpasswd_encryption=bcrypt# https://github.com/pyca/bcrypt/# > from bcrypt import _bcrypt# > ModuleNotFoundError: No module named '_cffi_backend'RUN apk add --no-cache py3-bcrypt py3-cffiARG REPOSITORY=http://dl-cdn.alpinelinux.org/alpine/edge/testingRUN apk add --repository=$REPOSITORY --no-cache radicale py3-passlibENV COLLECTIONS_PATH=/var/lib/radicale/collectionsRUN mkdir "$COLLECTIONS_PATH" && chown radicale "$COLLECTIONS_PATH"VOLUME $COLLECTIONS_PATHENV CONFIG_PATH=/etc/radicale/configUSER radicaleEXPOSE 5232/tcpCMD radicale --server-hosts=0.0.0.0:5232 \    --config="$CONFIG_PATH" \    --storage-filesystem-folder="$COLLECTIONS_PATH" \    --debug --logging-mask-passwords
 |