This commit is contained in:
2021-03-17 00:13:50 +01:00
commit 53855e45be
5 changed files with 49 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
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" ]