1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-04-17 11:56:22 +02:00

Adjust radicale Dockerfile for alpine:3.12 & layers optimisation

This commit is contained in:
ofthesun9 2020-06-15 17:48:15 +02:00
parent cff2e76269
commit e5f892ce70

View File

@ -1,7 +1,13 @@
ARG DISTRO=alpine:3.12
FROM $DISTRO
RUN apk add --no-cache curl bash python3 \
# python3 shared with most images
RUN apk add --no-cache \
python3 py3-pip bash \
&& pip3 install --upgrade pip
# Image specific layers under this line
RUN apk add --no-cache curl \
&& pip3 install radicale==2.1.12
COPY radicale.conf /radicale.conf