1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-03-05 14:55:20 +02:00
Mailu/optional/radicale/Dockerfile

22 lines
423 B
Docker
Raw Normal View History

2021-07-05 15:50:49 +02:00
ARG DISTRO=alpine:3.14
FROM $DISTRO
2016-11-30 14:02:36 +01:00
# python3 shared with most images
RUN apk add --no-cache \
python3 py3-pip bash \
&& pip3 install --upgrade pip
# Image specific layers under this line
RUN apk add --no-cache curl \
&& pip3 install radicale~=3.0
2016-11-30 14:02:36 +01:00
COPY radicale.conf /radicale.conf
EXPOSE 5232/tcp
VOLUME ["/data"]
CMD radicale -S -C /radicale.conf
2018-10-16 21:38:12 +02:00
HEALTHCHECK CMD curl -f -L http://localhost:5232/ || exit 1