Dockerfile: change style according to official Dockerfiles

This commit is contained in:
Alexis 'Horgix' Chotard 2016-06-24 17:38:43 +02:00
parent dfc215b63f
commit b2ebb8a433

View File

@ -2,33 +2,40 @@
# #
# VERSION 0.3.1 # VERSION 0.3.1
FROM alpine:latest FROM alpine:latest
# Base packages # Base packages
RUN apk update && \ RUN apk update \
apk upgrade && \ && apk upgrade \
apk add python3 python3-dev build-base libffi-dev ca-certificates && apk add \
python3 \
python3-dev \
build-base \
libffi-dev \
ca-certificates
# Python installation # Python installation
# pip # pip
ADD https://bootstrap.pypa.io/get-pip.py /tmp/install/ ADD https://bootstrap.pypa.io/get-pip.py /tmp/install/
RUN python3 /tmp/install/* && \ RUN python3 /tmp/install/* && \
pip install passlib bcrypt setuptools pip install passlib bcrypt setuptools
# Radicale installation # Radicale installation
RUN mkdir -p /data/config RUN mkdir -p /data/config
COPY . /data/radicale
COPY config /data/config COPY . /data/radicale
RUN cd /data/radicale && python3 setup.py install COPY config /data/config
RUN cd /data/radicale && python3 setup.py install
# User # User
RUN adduser -h /home/radicale -D radicale && \ RUN adduser -h /home/radicale -D radicale \
mkdir -p /home/radicale/.config && \ && mkdir -p /home/radicale/.config \
ln -s /data/config /home/radicale/.config/radicale && \ && ln -s /data/config /home/radicale/.config/radicale \
chown -R radicale:radicale /data/config && \ && chown -R radicale:radicale /data/config \
chown -R radicale:radicale /home/radicale && chown -R radicale:radicale /home/radicale
USER radicale USER radicale
WORKDIR /home/radicale WORKDIR /home/radicale
CMD ["radicale", "-D", "-C", "/data/config/config"] CMD ["radicale", "-D", "-C", "/data/config/config"]