2021-09-01 18:56:44 +02:00
|
|
|
ARG DISTRO=alpine:3.14.2
|
2019-08-21 18:24:30 +02:00
|
|
|
FROM $DISTRO
|
2016-11-30 15:02:36 +02:00
|
|
|
|
2020-06-15 17:48:15 +02:00
|
|
|
# python3 shared with most images
|
|
|
|
RUN apk add --no-cache \
|
2021-11-02 12:19:42 +02:00
|
|
|
python3 py3-pip bash tzdata \
|
2020-06-15 17:48:15 +02:00
|
|
|
&& pip3 install --upgrade pip
|
|
|
|
|
|
|
|
# Image specific layers under this line
|
|
|
|
RUN apk add --no-cache curl \
|
2020-08-09 14:54:00 +02:00
|
|
|
&& pip3 install radicale~=3.0
|
2016-11-30 15:02:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
COPY radicale.conf /radicale.conf
|
|
|
|
|
2018-04-21 14:46:01 +02:00
|
|
|
EXPOSE 5232/tcp
|
2018-09-28 17:12:50 +02:00
|
|
|
VOLUME ["/data"]
|
2018-04-21 14:46:01 +02:00
|
|
|
|
2020-05-28 14:05:47 +02:00
|
|
|
CMD radicale -S -C /radicale.conf
|
2018-10-16 21:38:12 +02:00
|
|
|
|
|
|
|
HEALTHCHECK CMD curl -f -L http://localhost:5232/ || exit 1
|