create radicale group

This commit is contained in:
Sam Erika Clotfelter 2024-03-13 00:04:29 -04:00
parent f05753be71
commit a8a7e23a37
2 changed files with 6 additions and 4 deletions

View file

@ -15,10 +15,11 @@ FROM python:3-alpine
WORKDIR /app
RUN adduser radicale --home /var/lib/radicale --system --uid 1000 --disabled-password \
RUN addgroup radicale \
&& adduser radicale --home /var/lib/radicale --system --uid 1000 --disabled-password -G radicale \
&& apk add --no-cache ca-certificates openssl
COPY --chown=radicale:nogroup --from=builder /app/venv /app
COPY --chown=radicale:radicale --from=builder /app/venv /app
# Persistent storage for data
VOLUME /var/lib/radicale