mirror of
https://github.com/cupcakearmy/docker-radicale.git
synced 2024-12-21 23:46:24 +00:00
17 lines
269 B
Docker
17 lines
269 B
Docker
FROM python:3.9
|
|
|
|
RUN apt update
|
|
RUN apt install -y apache2-utils
|
|
|
|
RUN python3 -m pip install --upgrade radicale[bcrypt]
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./config /etc/radicale/config
|
|
COPY ./entrypoint.sh .
|
|
|
|
ENV USER_FILE=/data/users
|
|
|
|
VOLUME [ "/data" ]
|
|
|
|
CMD [ "/app/entrypoint.sh" ] |