1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-30 04:30:49 +02:00
Mailu/optional/radicale/Dockerfile

28 lines
519 B
Docker
Raw Normal View History

ARG DISTRO=alpine:3.14.5
FROM $DISTRO
ARG VERSION
2016-11-30 14:02:36 +01:00
2021-11-04 14:22:12 +01:00
ENV TZ Etc/UTC
LABEL version=$VERSION
# python3 shared with most images
RUN apk add --no-cache \
2021-11-02 11:19:42 +01:00
python3 py3-pip bash tzdata \
&& pip3 install --upgrade pip
# Image specific layers under this line
RUN apk add --no-cache curl \
2022-04-11 12:38:19 +02:00
&& pip3 install pytz 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
2022-04-11 12:38:19 +02:00
RUN echo $VERSION >> /version