radicale/Dockerfile
Alexis 'Horgix' Chotard 906aaab8cd Dockerfile: rework config handling
- No need to run as another user, containers use user namespaces
- Make config file path FHS compliant
2016-06-26 17:25:44 +02:00

27 lines
645 B
Docker

FROM alpine:latest
MAINTAINER Radicale project "radicale@librelist.com"
ENV VERSION 1.1.1
ENV TARBALL https://github.com/Kozea/Radicale/archive/${VERSION}.tar.gz
RUN apk --update --update-cache upgrade \
&& apk add \
python3 \
python3-dev \
build-base \
libffi-dev \
ca-certificates \
&& python3 -m ensurepip \
&& pip3 install --upgrade pip
RUN pip3 install passlib bcrypt
RUN wget ${TARBALL} \
&& tar xzf ${VERSION}.tar.gz \
&& cd Radicale-${VERSION} && python3 setup.py install
COPY config /srv/radicale.conf
CMD ["radicale", "-D", "-C", "/srv/radicale.conf"]