add --break-system-packages

This commit is contained in:
Frank Adaemmer 2023-12-08 09:34:57 +01:00
parent cfd5ab9230
commit ca5830cb8d

View file

@ -1,7 +1,7 @@
FROM alpine:latest
RUN apk add --no-cache curl bash python3 py3-pip \
&& pip3 install radicale passlib
&& pip3 install --break-system-packages radicale passlib
COPY radicale.conf /radicale.conf
@ -11,4 +11,3 @@ VOLUME ["/data"]
CMD radicale -C /radicale.conf
HEALTHCHECK CMD curl -f -L http://localhost:5232/ || exit 1