mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
parent
81911eaa49
commit
66c9cd59a3
1 changed files with 12 additions and 25 deletions
37
Dockerfile
37
Dockerfile
|
@ -1,29 +1,7 @@
|
||||||
FROM alpine:latest
|
FROM python:3-alpine
|
||||||
|
|
||||||
# Version of Radicale (e.g. 2.0.0)
|
# Version of Radicale
|
||||||
ARG VERSION=master
|
ARG VERSION=2.1.x
|
||||||
|
|
||||||
# Install dependencies
|
|
||||||
RUN apk add --no-cache \
|
|
||||||
python3 \
|
|
||||||
py3-pip \
|
|
||||||
python3-dev \
|
|
||||||
build-base \
|
|
||||||
libffi-dev \
|
|
||||||
ca-certificates \
|
|
||||||
openssl
|
|
||||||
# Install Radicale
|
|
||||||
RUN wget --quiet https://github.com/Kozea/Radicale/archive/${VERSION}.tar.gz --output-document=radicale.tar.gz && \
|
|
||||||
tar xzf radicale.tar.gz && \
|
|
||||||
pip3 install ./Radicale-${VERSION}[md5,bcrypt] && \
|
|
||||||
rm -r radicale.tar.gz Radicale-${VERSION}
|
|
||||||
# Install dependencies for Radicale<2.1.9
|
|
||||||
RUN pip3 install passlib[bcrypt]
|
|
||||||
# Remove build dependencies
|
|
||||||
RUN apk del \
|
|
||||||
python3-dev \
|
|
||||||
build-base \
|
|
||||||
libffi-dev
|
|
||||||
# Persistent storage for data (Mount it somewhere on the host!)
|
# Persistent storage for data (Mount it somewhere on the host!)
|
||||||
VOLUME /var/lib/radicale
|
VOLUME /var/lib/radicale
|
||||||
# Configuration data (Put the "config" file here!)
|
# Configuration data (Put the "config" file here!)
|
||||||
|
@ -32,3 +10,12 @@ VOLUME /etc/radicale
|
||||||
EXPOSE 5232
|
EXPOSE 5232
|
||||||
# Run Radicale (Configure it here or provide a "config" file!)
|
# Run Radicale (Configure it here or provide a "config" file!)
|
||||||
CMD ["radicale", "--hosts", "0.0.0.0:5232"]
|
CMD ["radicale", "--hosts", "0.0.0.0:5232"]
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
RUN apk add --no-cache gcc musl-dev libffi-dev ca-certificates openssl
|
||||||
|
# Install Radicale
|
||||||
|
RUN pip install --no-cache-dir "Radicale[bcrypt,md5] @ https://github.com/Kozea/Radicale/archive/${VERSION}.tar.gz"
|
||||||
|
# Install dependencies for Radicale<2.1.9
|
||||||
|
RUN pip install passlib[bcrypt]
|
||||||
|
# Remove build dependencies
|
||||||
|
RUN apk del gcc musl-dev libffi-dev
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue