1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/optional/radicale/Dockerfile
ofthesun9 45f3772c26 Stick radicale to 2.1.12 version
As 3.0 is breaking compatibility with 2.1 branch
2020-05-20 08:21:59 +02:00

15 lines
281 B
Docker

ARG DISTRO=alpine:3.10
FROM $DISTRO
RUN apk add --no-cache curl bash python3 \
&& pip3 install radicale=2.1.12
COPY radicale.conf /radicale.conf
EXPOSE 5232/tcp
VOLUME ["/data"]
CMD radicale -f -S -C /radicale.conf
HEALTHCHECK CMD curl -f -L http://localhost:5232/ || exit 1