mirror of
https://github.com/Mailu/Mailu.git
synced 2025-03-05 14:55:20 +02:00
This fix https://github.com/Mailu/Mailu/issues/918 Bash shell is used by default in Kubernetes' dashboard console, which is very useful for admins.
14 lines
348 B
Docker
14 lines
348 B
Docker
FROM alpine:edge
|
|
|
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
|
&& apk add --no-cache radicale@testing py-dulwich@testing curl bash
|
|
|
|
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
|